diff --git a/docs.it4i/general/capacity-computing.md b/docs.it4i/general/capacity-computing.md
index 511ca78bbcf693fa277cd373c9773aaa89887541..211839aa3c78c30cac200b33378f5e43fe4cdebb 100644
--- a/docs.it4i/general/capacity-computing.md
+++ b/docs.it4i/general/capacity-computing.md
@@ -162,17 +162,17 @@ To install/compile HyperQueue, follow the steps on the [official webpage][b].
 
 * Start server (e.g. on a login node or in a cluster partition)
 
-  ``$ hq server start &``
+  `$ hq server start &`
 
-* Submit a job (command ``echo 'Hello world'`` in this case)
+* Submit a job (command `echo 'Hello world'` in this case)
 
-  ``$ hq submit echo 'Hello world'``
+  `$ hq submit echo 'Hello world'`
 
 * Ask for computing resources
 
   * Start worker manually
 
-    ``$ hq worker start &``
+    `$ hq worker start &`
 
   * Automatic resource request
 
@@ -182,15 +182,15 @@ To install/compile HyperQueue, follow the steps on the [official webpage][b].
 
     * Start worker on the first node of a PBS job
 
-    ``$ qsub <your-params-of-qsub> -- hq worker start``
+    `$ qsub <your-params-of-qsub> -- hq worker start`
 
     * Start worker on all nodes of a PBS job
 
-    ``$ qsub <your-params-of-qsub> -- `which pbsdsh` hq worker start``
+    `$ qsub <your-params-of-qsub> -- `which pbsdsh` hq worker start`
 
 * Monitor the state of jobs
 
-  ``$ hq jobs``
+  `$ hq jobs`
 
 ## Examples