diff --git a/templates/zephyr/markdown_help.html b/templates/zephyr/markdown_help.html index 2dc2242d06..7adc6af72f 100644 --- a/templates/zephyr/markdown_help.html +++ b/templates/zephyr/markdown_help.html @@ -46,30 +46,26 @@ Some inline code - ~~~
- def bah():
-     print "Humbug"
- ~~~
- + ~~~ +def bah(): + print "Humbug" +~~~
def bah():
     print "Humbug"
- ~~~ .py
- def bah():
-     print "Humbug"
- ~~~
- + ~~~ .py +def bah(): + print "Humbug" +~~~
def bah():
     print "Humbug"
- - (Indenting each line four spaces also creates a code block.) - +

You can also make a code block by indenting each line with 4 spaces.