From 5fa6368393f2f14f686b825c048e79aa9910502a Mon Sep 17 00:00:00 2001
From: Jan Siwiec <jan.siwiec@vsb.cz>
Date: Wed, 22 Sep 2021 07:59:57 +0200
Subject: [PATCH] fixed code blocks

---
 docs.it4i/software/intel/intel-suite/intel-compilers.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs.it4i/software/intel/intel-suite/intel-compilers.md b/docs.it4i/software/intel/intel-suite/intel-compilers.md
index 47566dc41..afbfa6bfe 100644
--- a/docs.it4i/software/intel/intel-suite/intel-compilers.md
+++ b/docs.it4i/software/intel/intel-suite/intel-compilers.md
@@ -28,7 +28,7 @@ Intel compilers provide vectorization of the code via the AVX-2/AVX-512 instruct
 
 For maximum performance on the Barbora cluster compute nodes, compile your programs using the AVX-512 instructions, with reporting where the vectorization was used. We recommend the following compilation options for high performance.
 
-``` info
+!!! info
     Barbora non-accelerated nodes support AVX-512 instructions (cn1-cn192).
 
 ```console
@@ -43,7 +43,7 @@ For maximum performance on the Barbora GPU nodes or Karolina cluster compute nod
 $ icc -ipo -O3 -xCORE-AVX2 -qopt-report1 -qopt-report-phase=vec myprog.c mysubroutines.c -o myprog.x
 ```
 
-``` warn
+!!! warn
     Karolina cluster has AMD cpu, use compiler options `-march=core-avx2`.
 
 In this example, we compile the program enabling interprocedural optimizations between source files (`-ipo`), aggressive loop optimizations (`-O3`), and vectorization (`-xCORE-AVX2`).
-- 
GitLab