diff options
Diffstat (limited to 'library/parsedown/test/data/code_block.md')
-rw-r--r-- | library/parsedown/test/data/code_block.md | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/library/parsedown/test/data/code_block.md b/library/parsedown/test/data/code_block.md new file mode 100644 index 000000000..2cfc953cc --- /dev/null +++ b/library/parsedown/test/data/code_block.md @@ -0,0 +1,10 @@ + <?php + + $message = 'Hello World!'; + echo $message; + +--- + + > not a quote + - not a list item + [not a reference]: http://foo.com
\ No newline at end of file |