From 5f3baeb410ff1c34a398cb0834050d32763c43f4 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Pavel=20Gajdu=C5=A1ek?= <gajdusek.pavel@gmail.com>
Date: Tue, 12 Sep 2017 11:29:07 +0200
Subject: [PATCH] mdlint

---
 docs.it4i/anselm/software/compilers.md | 52 +++++++++++++-------------
 1 file changed, 26 insertions(+), 26 deletions(-)

diff --git a/docs.it4i/anselm/software/compilers.md b/docs.it4i/anselm/software/compilers.md
index 71e60499b..63fa258ae 100644
--- a/docs.it4i/anselm/software/compilers.md
+++ b/docs.it4i/anselm/software/compilers.md
@@ -59,21 +59,21 @@ $ g++ -v
 
 Simple program to test the compiler
 
-```console
+```cpp
 $ cat count.upc
 
-    /* hello.upc - a simple UPC example */
-    #include <upc.h>
-    #include <stdio.h>
-
-    int main() {
-      if (MYTHREAD == 0) {
-        printf("Welcome to GNU UPC!!!n");
-      }
-      upc_barrier;
-      printf(" - Hello from thread %in", MYTHREAD);
-      return 0;
-    }
+/* hello.upc - a simple UPC example */
+#include <upc.h>
+#include <stdio.h>
+
+int main() {
+  if (MYTHREAD == 0) {
+    printf("Welcome to GNU UPC!!!n");
+  }
+  upc_barrier;
+  printf(" - Hello from thread %in", MYTHREAD);
+  return 0;
+}
 ```
 
 To compile the example use
@@ -108,21 +108,21 @@ For production runs, it is recommended to use the native Infiband implementation
 
 Example UPC code:
 
-```console
+```cpp
 $ cat hello.upc
 
-    /* hello.upc - a simple UPC example */
-    #include <upc.h>
-    #include <stdio.h>
-
-    int main() {
-      if (MYTHREAD == 0) {
-        printf("Welcome to Berkeley UPC!!!n");
-      }
-      upc_barrier;
-      printf(" - Hello from thread %in", MYTHREAD);
-      return 0;
-    }
+/* hello.upc - a simple UPC example */
+#include <upc.h>
+#include <stdio.h>
+
+int main() {
+  if (MYTHREAD == 0) {
+    printf("Welcome to Berkeley UPC!!!n");
+  }
+  upc_barrier;
+  printf(" - Hello from thread %in", MYTHREAD);
+  return 0;
+}
 ```
 
 To compile the example with the "ibv" UPC network use
-- 
GitLab