Fixed pagedown performance issue

This commit is contained in:
benweet 2014-04-22 00:19:26 +01:00
parent 5252d20aac
commit 97a3bd7dae

View File

@ -333,6 +333,8 @@ else
/gm,function(){...}};
*/
//text = text.replace(/^(<(p|div|h[1-6]|blockquote|pre|table|dl|ol|ul|script|noscript|form|fieldset|iframe|math)\b[^\r]*?.*<\/\2>[ \t]*(?=\n+)\n)/gm, hashElement);
// The .* is highly CPU consuming and I don't know what it's for (not even in the original showdown lib)
text = text.replace(/^(<(p|div|h[1-6]|blockquote|pre|table|dl|ol|ul|script|noscript|form|fieldset|iframe|math)\b[^\r]*?<\/\2>[ \t]*(?=\n+)\n)/gm, hashElement);
// Special case just for <hr />. It was easier to make a special case than