lib/markdown: fix nitunits in README
authorAlexandre Terrasa <alexandre@moz-code.org>
Wed, 11 Oct 2017 02:54:30 +0000 (22:54 -0400)
committerAlexandre Terrasa <alexandre@moz-code.org>
Wed, 11 Oct 2017 02:58:40 +0000 (22:58 -0400)
Signed-off-by: Alexandre Terrasa <alexandre@moz-code.org>

lib/markdown/README.md

index a5c6052..7068bb0 100644 (file)
@@ -7,7 +7,9 @@ This parser is inspired by the famous TxtMark for Java (https://github.com/rjesc
 
 `nitmd` can be used as a standalone tool:
 
-       $ nitmd file.md
+~~~bash
+$ nitmd file.md
+~~~
 
 Or you can use it programmatically by importing the `markdown` module.
 
@@ -26,4 +28,6 @@ Minimalists tests are prefixed with `process_*`. All tests from daringfireball a
 
 Run the test suite:
 
-       $ nitunit lib/markdown/markdown.nit -t lib/markdown/test_markdown.nit
+~~~bash
+$ nitunit lib/markdown/markdown.nit -t lib/markdown/test_markdown.nit
+~~~