summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2015-12-28 14:58:17 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2015-12-28 14:58:17 (GMT)
commit205f7335bca570e87afc0df07bd355848c7af2e3 (patch)
tree6f8d9c16dea183da68c338c3259d902c1853994d
parent8da86f8adfb826f13321c7d163431f9671ba20b7 (diff)
downloadDoxygen-205f7335bca570e87afc0df07bd355848c7af2e3.zip
Doxygen-205f7335bca570e87afc0df07bd355848c7af2e3.tar.gz
Doxygen-205f7335bca570e87afc0df07bd355848c7af2e3.tar.bz2
Bug 731509 - Markdown backticks not processed within Markdown links.
-rw-r--r--src/markdown.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/markdown.cpp b/src/markdown.cpp
index f070125..6c5b4c8 100644
--- a/src/markdown.cpp
+++ b/src/markdown.cpp
@@ -901,7 +901,8 @@ static int processLink(GrowBuf &out,const char *data,int,int size)
out.addStr("\"");
}
out.addStr(">");
- out.addStr(content.simplifyWhiteSpace());
+ content = content.simplifyWhiteSpace();
+ processInline(out,content,content.length());
out.addStr("</a>");
}
else // avoid link to e.g. F[x](y)