|
|
@ -52,13 +52,11 @@ module.exports = function backtick(state, silent) { |
|
|
|
|
|
|
|
// Some different length found, put it in cache as upper limit of where closer can be found
|
|
|
|
state.backticks[closerLength] = matchStart; |
|
|
|
|
|
|
|
// Scanned through the end, didn't find anything
|
|
|
|
if (matchEnd >= max) { |
|
|
|
state.backticksScanned = true; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
// Scanned through the end, didn't find anything
|
|
|
|
state.backticksScanned = true; |
|
|
|
|
|
|
|
if (!silent) state.pending += marker; |
|
|
|
state.pos += openerLength; |
|
|
|
return true; |
|
|
|