Lines Matching full:code
1 Fenced Code Blocks
7 This extension adds a secondary way to define code blocks which overcomes a few
8 limitations of the indented code blocks.
15 Fenced Code Blocks are defined using the syntax established in
18 [php]: http://www.michelf.com/projects/php-markdown/extra/#fenced-code-blocks
25 a one-line code block
28 Fenced code blocks can have a blank line as the first and/or last line of a
29 code block and they can also come immediately after a list item without becoming
32 In addition to PHP Extra's syntax, you can define the language of the code
34 class attribute of the ``<code>`` element in the output. Therefore, you should
40 # python code
49 <pre><code class="python"># python code
50 </code></pre>
52 <pre><code class="html"><p>HTML Document</p>
53 </code></pre>