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.text
100644 12 lines (11 sloc) 0.135 kb
1
2
3
4
5
6
7
8
9
10
11
12
> Example:
>
> sub status {
> print "working";
> }
>
> Or:
>
> sub status {
> return "working";
> }