|
@ -48,7 +48,9 @@ function LexerInline() { |
|
|
this.rules = []; |
|
|
this.rules = []; |
|
|
|
|
|
|
|
|
// Rule to skip pure text
|
|
|
// Rule to skip pure text
|
|
|
this.textMatch = /^[^\n\\`*_\[!<&>"]+/; |
|
|
// - '{$%@' reserved for extentions
|
|
|
|
|
|
// - '<>"' added for internal html escaping
|
|
|
|
|
|
this.textMatch = /^[^\n\\`*_\[!&{$%@<>"]+/; |
|
|
|
|
|
|
|
|
for (var i = 0; i < rules.length; i++) { |
|
|
for (var i = 0; i < rules.length; i++) { |
|
|
this.after(null, rules[i]); |
|
|
this.after(null, rules[i]); |
|
|