-
Previously I could get the node and work with it, by simply calling But syntax-tree/mdast-util-from-markdown@18f4bb0 changed this behavour. and states that I should "get the node myself". Any Ideas? |
Beta Was this translation helpful? Give feedback.
Answered by
reckter
Jul 8, 2024
Replies: 1 comment 1 reply
-
Heya! Rest of the commit shows more. There’s a stack being kept of open nodes at |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ahh, I've use
this.stack[0]
, but it needs to bethis.stack[this.stack.length -1]
.I was confused why I got the root node.
Thanks!