|
|
@ -26,8 +26,6 @@ function process_inlines(tokens, state) { |
|
|
|
for (i = 0; i < tokens.length; i++) { |
|
|
|
token = tokens[i]; |
|
|
|
|
|
|
|
if (token.type !== 'text' || QUOTE_TEST_RE.test(token.text)) { continue; } |
|
|
|
|
|
|
|
thisLevel = tokens[i].level; |
|
|
|
|
|
|
|
for (j = stack.length - 1; j >= 0; j--) { |
|
|
@ -35,6 +33,8 @@ function process_inlines(tokens, state) { |
|
|
|
} |
|
|
|
stack.length = j + 1; |
|
|
|
|
|
|
|
if (token.type !== 'text') { continue; } |
|
|
|
|
|
|
|
text = token.content; |
|
|
|
pos = 0; |
|
|
|
max = text.length; |
|
|
|