Skip to content

Commit

Permalink
Merge pull request #10748 from albert-github/feature/issue_10747
Browse files Browse the repository at this point in the history
issue #10747 Alias replaces HTML brackets to HTML codes, e.g "<img src=..." to "&lt;img src="
  • Loading branch information
doxygen committed Mar 18, 2024
2 parents 130ec04 + 008a92c commit 23c85bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/markdown.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1554,7 +1554,7 @@ int Markdown::Private::processLink(const std::string_view data,size_t offset)
out+=" ";
out+=externalLinkTarget();
out+=">";
content = substitute(content.simplifyWhiteSpace(),"\"","\\\"");
content = content.simplifyWhiteSpace();
processInline(std::string_view(content.str()));
out+="</a>";
}
Expand Down

0 comments on commit 23c85bc

Please sign in to comment.