summaryrefslogtreecommitdiffstats
path: root/src/markdown.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-08-03 17:50:26 (GMT)
committerGitHub <noreply@github.com>2020-08-03 17:50:26 (GMT)
commita1ceb44ce2ed6660d05d46febb6d5a4d70259a3d (patch)
treed4d7a5a789f5f0001048466332f8b92123d78b4d /src/markdown.cpp
parentaa3385f19d06c6b526e6d09c6172d89a1b91d8da (diff)
parent75788787883ae8031f2de1fbafed052462c5356d (diff)
downloadDoxygen-a1ceb44ce2ed6660d05d46febb6d5a4d70259a3d.zip
Doxygen-a1ceb44ce2ed6660d05d46febb6d5a4d70259a3d.tar.gz
Doxygen-a1ceb44ce2ed6660d05d46febb6d5a4d70259a3d.tar.bz2
Merge pull request #7782 from wataash/tagend-markdown-em
issue #7781: allow '>' before Markdown emphasis
Diffstat (limited to 'src/markdown.cpp')
-rw-r--r--src/markdown.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/markdown.cpp b/src/markdown.cpp
index 2863669..86727a9 100644
--- a/src/markdown.cpp
+++ b/src/markdown.cpp
@@ -153,8 +153,8 @@ int Trace::s_indent = 0;
// 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*