diff options
Diffstat (limited to 'library/parsedown/test/data/text_reference.md')
-rw-r--r-- | library/parsedown/test/data/text_reference.md | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/library/parsedown/test/data/text_reference.md b/library/parsedown/test/data/text_reference.md new file mode 100644 index 000000000..1a66a5cf6 --- /dev/null +++ b/library/parsedown/test/data/text_reference.md @@ -0,0 +1,21 @@ +[reference link][1] + +[1]: http://example.com + +[one][website] with a semantic name + +[website]: http://example.com + +[one][404] with no definition + +[multiline +one][website] defined on 2 lines + +[one][Label] with a mixed case label and an upper case definition + +[LABEL]: http://example.com + +[one] +[1] with the a label on the next line + +[`link`][website]
\ No newline at end of file |