How can I hook into a tokenizer to parse additonal content when it gets to a step before it checks for a newline. #147
Unanswered
kelvinhammond
asked this question in
Q&A
Replies: 1 comment 7 replies
-
You can’t hook into it like that. Did you see this chapter? You probably shouldn’t create extensions. |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I'm trying to parse some markdown files which contains content like so:
The
codeFenced
fails to parse the`
because it's not a newline at the end. What is the proper way to hook into theeffects.attempt
for this? Or should I go another direction. I was hoping to avoid re-implementingcodeFenced
if possible. I need to do the same forcodeText
(ex:`echo hello`{{execute}}
)Beta Was this translation helpful? Give feedback.
All reactions