diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2014-01-26 14:17:47 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2014-01-26 14:17:47 (GMT) |
commit | 60ea06a68f2e355e34b61bf45babc6405bfbfe84 (patch) | |
tree | 556f2bc076cae6fcebd42737f061f4a8395e00e6 /testing | |
parent | 0e9da9fb27147c5685088019afd428a0aaa901fa (diff) | |
download | Doxygen-60ea06a68f2e355e34b61bf45babc6405bfbfe84.zip Doxygen-60ea06a68f2e355e34b61bf45babc6405bfbfe84.tar.gz Doxygen-60ea06a68f2e355e34b61bf45babc6405bfbfe84.tar.bz2 |
Bug 722711 - [PATCH] Link refs with no title swallow an extra newline
Diffstat (limited to 'testing')
-rw-r--r-- | testing/055/md_055_markdown.xml | 20 | ||||
-rw-r--r-- | testing/055_markdown.md | 16 |
2 files changed, 36 insertions, 0 deletions
diff --git a/testing/055/md_055_markdown.xml b/testing/055/md_055_markdown.xml new file mode 100644 index 0000000..496685f --- /dev/null +++ b/testing/055/md_055_markdown.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version=""> + <compounddef id="md_055_markdown" kind="page"> + <compoundname>md_055_markdown</compoundname> + <title>055_markdown</title> + <detaileddescription> + <para> + <heading level="1">Foo</heading> + </para> + <para> + <heading level="2">Bar</heading> + </para> + <para>Some text with a <ulink url="http://www.example.com/">link</ulink>.</para> + <para> + <heading level="2">Baz</heading> + </para> + <para>More text </para> + </detaileddescription> + </compounddef> +</doxygen> diff --git a/testing/055_markdown.md b/testing/055_markdown.md new file mode 100644 index 0000000..39ce574 --- /dev/null +++ b/testing/055_markdown.md @@ -0,0 +1,16 @@ +<!-- +// objective: test markdown +// check: md_055_markdown.xml +--> + +# Foo + +## Bar + +Some text with a [link][1]. + +[1]: http://www.example.com/ + +## Baz + +More text |