From 205f7335bca570e87afc0df07bd355848c7af2e3 Mon Sep 17 00:00:00 2001 From: Dimitri van Heesch Date: Mon, 28 Dec 2015 15:58:17 +0100 Subject: Bug 731509 - Markdown backticks not processed within Markdown links. --- src/markdown.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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(""); } else // avoid link to e.g. F[x](y) -- cgit v0.12