public
Description: An implementation of markdown in C, using a PEG grammar
Clone URL: git://github.com/jgm/peg-markdown.git
Search Repo:
peg-markdown / MarkdownTest_1.0.3 / Tests / Blockquotes with code blocks.html
100644 16 lines (12 sloc) 0.186 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<blockquote>
  <p>Example:</p>
 
<pre><code>sub status {
    print "working";
}
</code></pre>
  
  <p>Or:</p>
 
<pre><code>sub status {
    return "working";
}
</code></pre>
</blockquote>