Replies: 1 comment
-
This is syntax that works, but it's not what I'd recommend writing. For clarity, include the closing ticks or colons. But we need to tell the parser what to do in the case where the outer container ends and the inner one isn't closed yet -- closing implicitly seems the best option. |
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
-
I just noticed in the docs for code blocks that this
is valid syntax. I was expecting it to instead be:
The former (without the closing
```
) looks strange to me. What is the rationale for the implicit closing of the code block?I see that I can also start a div inside a blockquote and it too doesn't require the closing
:::
:And I see that I can also do something similar, but with a div inside a div:
where that "Bar" is outside both divs... But, does that look correct though? warning-1 hasn't closed yet, so I'd expect Bar to still be inside it.
Beta Was this translation helpful? Give feedback.
All reactions