mirror of
https://github.com/discourse/discourse.git
synced 2024-11-28 03:33:58 -06:00
these parens!
This commit is contained in:
parent
2e2160f964
commit
514df5441a
@ -143,7 +143,7 @@ Discourse.Markdown = {
|
||||
if (!text) return "";
|
||||
|
||||
// don't do @username mentions inside <pre> or <code> blocks
|
||||
text = text.replace(/<(pre|code)>([\s\S]*?@[\s\S]*?)<\/(pre|code)>)/gi, function(wholeMatch, m1, m2, m3) {
|
||||
text = text.replace(/<(pre|code)>([\s\S]*?@[\s\S]*?)<\/(pre|code)>/gi, function(wholeMatch, m1, m2, m3) {
|
||||
return "<" + m1 + ">" + (m2.replace(/@/g, '@')) + "</" + m3 + ">";
|
||||
});
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user