diff options
author | Colin Watson <cjwatson@debian.org> | 2018-02-22 14:15:07 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2018-02-22 14:15:07 +0000 |
commit | 6037043e01b2a096d39883f9f7dd27cdcfe8d0ab (patch) | |
tree | 042485ea3a0d01f52c44fba7f2825798f8faab6c /tests | |
parent | 0db8e281af377923115b894703b2b8beb8f1e9d5 (diff) | |
download | pygments-6037043e01b2a096d39883f9f7dd27cdcfe8d0ab.tar.gz |
Markdown: add support for reference-style links
Diffstat (limited to 'tests')
-rw-r--r-- | tests/examplefiles/example.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/examplefiles/example.md b/tests/examplefiles/example.md index 2befb107..e2bbacf1 100644 --- a/tests/examplefiles/example.md +++ b/tests/examplefiles/example.md @@ -46,6 +46,9 @@ this sentence @tweets a person about a #topic. [google](https://google.com/some/path.html) ![Image of Yaktocat](https://octodex.github.com/images/yaktocat.png) +[reference link][id] +[id]: http://example.com/ + ``` * this is just unformated __text__ |