summaryrefslogtreecommitdiffstats
path: root/src/markdown.cpp
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2018-10-08 12:09:18 (GMT)
committeralbert-github <albert.tests@gmail.com>2018-10-08 12:09:18 (GMT)
commit5ddb9f02b9fdaf6e3e25f0281d11e6d516ab4aad (patch)
treeb45213cc7cb6c51aadd42dbb001d2d3c15435642 /src/markdown.cpp
parent36eefaf9a5faeb828c0d99bffb731747a59f17fe (diff)
downloadDoxygen-5ddb9f02b9fdaf6e3e25f0281d11e6d516ab4aad.zip
Doxygen-5ddb9f02b9fdaf6e3e25f0281d11e6d516ab4aad.tar.gz
Doxygen-5ddb9f02b9fdaf6e3e25f0281d11e6d516ab4aad.tar.bz2
Bold text terminated by plus sign
No reason to have '+,'-' or '=' with ignore characters. See also: https://stackoverflow.com/questions/52696929/markdown-bold-text
Diffstat (limited to 'src/markdown.cpp')
-rw-r--r--src/markdown.cpp2
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]=='@')
//----------