diff options
author | albert-github <albert.tests@gmail.com> | 2018-10-08 12:09:18 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2018-10-08 12:09:18 (GMT) |
commit | 5ddb9f02b9fdaf6e3e25f0281d11e6d516ab4aad (patch) | |
tree | b45213cc7cb6c51aadd42dbb001d2d3c15435642 /src/markdown.cpp | |
parent | 36eefaf9a5faeb828c0d99bffb731747a59f17fe (diff) | |
download | Doxygen-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.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]=='@') //---------- |