summaryrefslogtreecommitdiffstats
path: root/src/doxygen.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-07-27 12:15:58 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2020-07-27 12:15:58 (GMT)
commitfdefd3091128296d8f572f7daba6d838de24bf4b (patch)
tree1b40da5e046c07a16d0a8cb1fedca90240047183 /src/doxygen.cpp
parentab7dfc4d6de5a65946e5c0e54eab6fe21e7e44eb (diff)
downloadDoxygen-fdefd3091128296d8f572f7daba6d838de24bf4b.zip
Doxygen-fdefd3091128296d8f572f7daba6d838de24bf4b.tar.gz
Doxygen-fdefd3091128296d8f572f7daba6d838de24bf4b.tar.bz2
Additional tweaks to get markdown tables inside ALIASES work
- Changed \_linebr to \ilinebr - \ilinebr is now also passed to doctokenizer - Also fixes issue #7493 regarding \snippet inside markdown tables and dealing with wrong line on issues detected by docparser after a markdown table. - Added function tracing to markdown (enabled with -d markdown in a debug build)
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r--src/doxygen.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp
index f073051..bc8eed7 100644
--- a/src/doxygen.cpp
+++ b/src/doxygen.cpp
@@ -9628,7 +9628,7 @@ static void escapeAliases()
value.mid(in,14)!="\\nosubgrouping"
)
{
- newValue+="\\_linebr ";
+ newValue+="\\ilinebr ";
}
else
{
@@ -9643,7 +9643,7 @@ static void escapeAliases()
while ((in=value.find("^^",p))!=-1)
{
newValue+=value.mid(p,in-p);
- newValue+="\\\\_linebr ";
+ newValue+="\\ilinebr ";
p=in+2;
}
newValue+=value.mid(p,value.length()-p);