mirror of
https://github.com/kotaindah55/extended-markdown-syntax.git
synced 2026-07-22 05:38:06 +00:00
fix: add the third argument that was missed before
This commit is contained in:
parent
d9adcebbd2
commit
b7c16677cb
2 changed files with 2 additions and 2 deletions
|
|
@ -14,5 +14,5 @@ export function fencedDivTag(state: ParserState, token: Token) {
|
|||
}
|
||||
state.advance(token.tagLen - initTagLen);
|
||||
if (offset >= str.length) { token.validTag = true }
|
||||
else { state.queue.resolve([token.type], false) }
|
||||
else { state.queue.resolve([token.type], false, false) }
|
||||
}
|
||||
|
|
@ -5,5 +5,5 @@ export function handleClosingDelim(state: ParserState, token: Token, closeLen: n
|
|||
token.closeLen = closeLen;
|
||||
token.to = state.globalOffset + closeLen;
|
||||
state.advance(closeLen);
|
||||
state.queue.resolve([token.type], true);
|
||||
state.queue.resolve([token.type], true, false);
|
||||
}
|
||||
Loading…
Reference in a new issue