diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2018-10-13 14:34:54 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-13 14:34:54 (GMT) |
commit | 3e72c16f32605a893b27d39a43162f02caefe753 (patch) | |
tree | 860d3a5cfb982e67dffaa35d9667a6d4c7b97989 | |
parent | 656ecab0ad67e0e54097eee37f794f0e3ced334a (diff) | |
parent | 5ddb9f02b9fdaf6e3e25f0281d11e6d516ab4aad (diff) | |
download | Doxygen-3e72c16f32605a893b27d39a43162f02caefe753.zip Doxygen-3e72c16f32605a893b27d39a43162f02caefe753.tar.gz Doxygen-3e72c16f32605a893b27d39a43162f02caefe753.tar.bz2 |
Merge pull request #6545 from albert-github/feature/bug_markdown_emphasis
Bold text terminated by plus sign
-rw-r--r-- | src/markdown.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/markdown.cpp b/src/markdown.cpp index c19d6db..f812d96 100644 --- a/src/markdown.cpp +++ b/src/markdown.cpp @@ -76,7 +76,7 @@ // so for example *bla (*.txt) is cool* #define ignoreCloseEmphChar(i) \ (data[i]=='(' || data[i]=='{' || data[i]=='[' || data[i]=='<' || \ - data[i]=='=' || data[i]=='+' || data[i]=='-' || data[i]=='\\' || \ + data[i]=='\\' || \ data[i]=='@') //---------- |