fix: add the third argument that was missed before

This commit is contained in:
kotaindah55 2025-03-04 19:00:24 +02:00
parent d9adcebbd2
commit b7c16677cb
2 changed files with 2 additions and 2 deletions

View file

@ -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) }
}

View file

@ -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);
}