mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
FIX: Performance issue with [\] characters.
This commit is contained in:
8
vendor/assets/javascripts/better_markdown.js
vendored
8
vendor/assets/javascripts/better_markdown.js
vendored
@@ -655,7 +655,7 @@
|
||||
|
||||
if ( consumed >= text.length ) {
|
||||
// No closing char found. Abort.
|
||||
return null;
|
||||
return [consumed, null, nodes];
|
||||
}
|
||||
|
||||
var res = this.dialect.inline.__oneElement__.call(this, text.substr( consumed ), patterns );
|
||||
@@ -1264,8 +1264,10 @@
|
||||
var res = inline_until_char.call( this, text.substr(1), "]" );
|
||||
|
||||
// No closing ']' found. Just consume the [
|
||||
if ( !res )
|
||||
return [ 1, "[" ];
|
||||
if ( !res[1] ) {
|
||||
var size = res[0] + 1;
|
||||
return [ size, text.charAt(0) + res[2].join('') ];
|
||||
}
|
||||
|
||||
var consumed = 1 + res[ 0 ],
|
||||
children = res[ 1 ],
|
||||
|
||||
Reference in New Issue
Block a user