diff --git a/mdit_py_plugins/deflist/index.py b/mdit_py_plugins/deflist/index.py index 8429b56..98430c3 100644 --- a/mdit_py_plugins/deflist/index.py +++ b/mdit_py_plugins/deflist/index.py @@ -160,7 +160,7 @@ def deflist(state: StateBlock, startLine: int, endLine: int, silent: bool): state.tight = True state.parentType = "deflist" - state.md.block.tokenize(state, ddLine, endLine, True) + state.md.block.tokenize(state, ddLine, endLine) # If any of list item is tight, mark list as tight if not state.tight or prevEmptyEnd: diff --git a/mdit_py_plugins/footnote/index.py b/mdit_py_plugins/footnote/index.py index 7e66073..09a2ae5 100644 --- a/mdit_py_plugins/footnote/index.py +++ b/mdit_py_plugins/footnote/index.py @@ -131,7 +131,7 @@ def footnote_def(state: StateBlock, startLine: int, endLine: int, silent: bool): if state.sCount[startLine] < state.blkIndent: state.sCount[startLine] += state.blkIndent - state.md.block.tokenize(state, startLine, endLine, True) + state.md.block.tokenize(state, startLine, endLine) state.parentType = oldParentType state.blkIndent -= 4