Added fenced syntax for Markdown

This commit is contained in:
Leonardo Giordani 2014-04-30 10:08:56 +02:00
commit 2e31cea442

View file

@ -578,6 +578,15 @@ indenting both the identifier and code::
:::identifier
<code goes here>
Alternatively, in Markdown you can use the fenced code blocks, wrapping
your code in ``````` which does not require indenting::
A block of text
```identifier
<code goes here>
```
The specified identifier (e.g. ``python``, ``ruby``) should be one that
appears on the `list of available lexers <http://pygments.org/docs/lexers/>`_.