Skip to content

Commit

Permalink
Bug 731509 - Markdown backticks not processed within Markdown links.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimitri van Heesch committed Dec 28, 2015
1 parent 8da86f8 commit 205f733
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/markdown.cpp
Expand Up @@ -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)
Expand Down

0 comments on commit 205f733

Please sign in to comment.