From 6391171feb9bde2cdf4f449f75182e23d9e71c86 Mon Sep 17 00:00:00 2001
From: Jan Siwiec <jan.siwiec@vsb.cz>
Date: Wed, 17 Jan 2024 13:14:44 +0100
Subject: [PATCH] Update power10.md

---
 docs.it4i/cs/guides/power10.md | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/docs.it4i/cs/guides/power10.md b/docs.it4i/cs/guides/power10.md
index 28c55dad8..e1f545b1f 100644
--- a/docs.it4i/cs/guides/power10.md
+++ b/docs.it4i/cs/guides/power10.md
@@ -43,6 +43,7 @@ or `gfortran`
 ```
 gfortran -lopenblas hello.f90 -o hello
 ```
+
 as usual.
 
 ### IBM Toolchain
@@ -66,11 +67,13 @@ from there we can use either `ibm-clang++`
 ```
 ibm-clang++ -lopenblas hello.cpp -o hello
 ```
+
 or `xlf`
 
 ```
 xlf -lopenblas hello.f90 -o hello
 ```
+
 to build the application as usual.
 
 !!! note
@@ -92,11 +95,13 @@ In practice this can look like
 ```
 g++ -L${ESSL_ROOT}/lib64 -lessl -lopenblas hello.cpp -o hello
 ```
+
 or
 
 ```
 gfortran -L${ESSL_ROOT}/lib64 -lessl -lopenblas hello.f90 -o hello
 ```
+
 and similarly for IBM compilers (`ibm-clang++` and `xlf`).
 
 ## Hello World Applications
-- 
GitLab