diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2014-02-04 20:55:23 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2014-02-04 20:55:23 (GMT) |
commit | 5b68436fbcc1d45eef63783faae8727e9d806096 (patch) | |
tree | b3c8ca30b19b2cf594e25183e05329fa24574610 /testing/055_markdown.md | |
parent | 89638fbc9961bd9a1e9cb7bc25e5f739936e8a43 (diff) | |
parent | 3df31762585075033a04e40c3cdfb52781aa258f (diff) | |
download | Doxygen-5b68436fbcc1d45eef63783faae8727e9d806096.zip Doxygen-5b68436fbcc1d45eef63783faae8727e9d806096.tar.gz Doxygen-5b68436fbcc1d45eef63783faae8727e9d806096.tar.bz2 |
Merge branch 'wip/fix-link-id-on-last-line' of https://github.com/agateau/doxygen into agateau-wip/fix-link-id-on-last-line
Conflicts:
testing/055/md_055_markdown.xml
testing/055_markdown.md
Diffstat (limited to 'testing/055_markdown.md')
-rw-r--r-- | testing/055_markdown.md | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/testing/055_markdown.md b/testing/055_markdown.md index 39ce574..aeb9f1a 100644 --- a/testing/055_markdown.md +++ b/testing/055_markdown.md @@ -1,5 +1,5 @@ <!-- -// objective: test markdown +// objective: test markdown parsing // check: md_055_markdown.xml --> @@ -7,10 +7,16 @@ ## Bar -Some text with a [link][1]. +[Inline link](http://example.com/inline) -[1]: http://www.example.com/ +[Reference link][1] + +[1]: http://example.com/reference ## Baz More text + +[Upper-cased reference link on last line][U] + +[U]: http://example.com/last-line |