You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When rendering a code block with language, it will ignore (```) that has no character between them.
Ex:
Markdown:
Display:
We can see that (```)markdown will catch nearest (```) but ignore (```)python since nothing is in between them.
Now for code block which has language but does has character in between them:
Markdown:
Display:
If it has only a character between (```)s , it will still group everything although the second (```) is mean for other code block
Ideas
Like other markdown renderer (e.g. the one used by Github and VSCode), a code block should only catch standalone (```), instead of the next (```) even if they suppose to be used by other block.
The text was updated successfully, but these errors were encountered:
The second set of ``` terminates the prior, you need to escape the inside ones. Thinking about if there's a good way to handle this. When there is a language specified it makes it easier since you know for sure that it's basically a new "opening" but without a language it's ambiguous.
The second set of ``` terminates the prior, you need to escape the inside ones. Thinking about if there's a good way to handle this. When there is a language specified it makes it easier since you know for sure that it's basically a new "opening" but without a language it's ambiguous.
I have a similar issue, the problem is my fenced code block get’s split because the content of the fenced code block has inline some within it. I wonder if compiler can be configured to properly find fenced code block ending.
Description
When rendering a code block with language, it will ignore (```) that
has no character between
them.Ex:
Markdown:
Display:
We can see that
(```)markdown
will catch nearest(```)
but ignore(```)python
since nothing is in between them.Now for code block which has language but does
has character in between
them:Markdown:
Display:
If it has only a character between
(```)
s , it will still group everything although the second(```)
is mean for other code blockIdeas
Like other markdown renderer (e.g. the one used by Github and VSCode), a code block should only catch standalone
(```)
, instead of the next(```)
even if they suppose to be used by other block.The text was updated successfully, but these errors were encountered: