diff options
author | Wataru Ashihara <wataash@wataash.com> | 2020-05-17 07:58:59 (GMT) |
---|---|---|
committer | Wataru Ashihara <wataash@wataash.com> | 2020-05-23 02:39:15 (GMT) |
commit | 75788787883ae8031f2de1fbafed052462c5356d (patch) | |
tree | 0f8ac3ee495b7917f84ae89a0cf22d28088f556f | |
parent | 396d90b3e11b71fd94ef2c06165872e496ba41b2 (diff) | |
download | Doxygen-75788787883ae8031f2de1fbafed052462c5356d.zip Doxygen-75788787883ae8031f2de1fbafed052462c5356d.tar.gz Doxygen-75788787883ae8031f2de1fbafed052462c5356d.tar.bz2 |
issue #7781: allow '>' before Markdown emphasis
-rw-r--r-- | src/markdown.cpp | 4 | ||||
-rw-r--r-- | testing/055/md_055_markdown.xml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/markdown.cpp b/src/markdown.cpp index b04ab2a..4f9d483 100644 --- a/src/markdown.cpp +++ b/src/markdown.cpp @@ -70,8 +70,8 @@ // is character at position i in data allowed before an emphasis section #define isOpenEmphChar(i) \ (data[i]=='\n' || data[i]==' ' || data[i]=='\'' || data[i]=='<' || \ - data[i]=='{' || data[i]=='(' || data[i]=='[' || data[i]==',' || \ - data[i]==':' || data[i]==';') + data[i]=='>' || data[i]=='{' || data[i]=='(' || data[i]=='[' || \ + data[i]==',' || data[i]==':' || data[i]==';') // is character at position i in data an escape that prevents ending an emphasis section // so for example *bla (*.txt) is cool* diff --git a/testing/055/md_055_markdown.xml b/testing/055/md_055_markdown.xml index 6b640f4..d814788 100644 --- a/testing/055/md_055_markdown.xml +++ b/testing/055/md_055_markdown.xml @@ -28,7 +28,7 @@ <sect2 id="md_055_markdown_1autotoc_md3"> <title>Markdown in HTML</title> <para> - <heading level="3">**Header3** blah <emphasis>blah</emphasis> <computeroutput>blah</computeroutput></heading> + <heading level="3"><bold>Header3</bold> blah <emphasis>blah</emphasis> <computeroutput>blah</computeroutput></heading> </para> </sect2> </sect1> |