summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorWataru Ashihara <wataash@wataash.com>2020-05-17 07:58:59 (GMT)
committerWataru Ashihara <wataash@wataash.com>2020-05-23 02:39:15 (GMT)
commit75788787883ae8031f2de1fbafed052462c5356d (patch)
tree0f8ac3ee495b7917f84ae89a0cf22d28088f556f /src
parent396d90b3e11b71fd94ef2c06165872e496ba41b2 (diff)
downloadDoxygen-75788787883ae8031f2de1fbafed052462c5356d.zip
Doxygen-75788787883ae8031f2de1fbafed052462c5356d.tar.gz
Doxygen-75788787883ae8031f2de1fbafed052462c5356d.tar.bz2
issue #7781: allow '>' before Markdown emphasis
Diffstat (limited to 'src')
-rw-r--r--src/markdown.cpp4
1 files changed, 2 insertions, 2 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*