diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/to_mdast.rs | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/to_mdast.rs b/src/to_mdast.rs index 42f68a0..c47eb22 100644 --- a/src/to_mdast.rs +++ b/src/to_mdast.rs @@ -1426,17 +1426,10 @@ fn on_exit_mdx_jsx_tag(context: &mut CompileContext) -> Result<(), String> { }; context.tail_push(node); - - // this.enter( - // node, - // token, - // onErrorRightIsTag - // ) } if tag.self_closing || tag.close { context.tail_pop()?; - // this.exit(token, onErrorLeftIsTag) } else { context.jsx_tag_stack.push(tag); } |