Replies: 1 comment
-
It has to do with how markdown works. There are several patterns that match "block" html. Which is something that works per line and that is emitted verbatim. Otherwise, inside paragraphs (and headings and such) there is "inline" html. That only matches separate tags and such. So that you can embed some more markdown (like emphasis) inside those tags. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Currently some code like this
logs
Why is there difference in the two cases? 👀
Edit: Ah, I think it's because template is not recognized as a html tag. Is there some way to configure/extend the parser so that template or any other custom tag is treated same as normal html elements?
I see that there was a blocks property in v8 but removed in v9.
Beta Was this translation helpful? Give feedback.
All reactions