mirror of
https://github.com/xoofx/markdig.git
synced 2026-02-11 21:37:17 +00:00
Weird format when nesting custom containers. #214
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @pauldotknopf on GitHub (Jun 24, 2018).
I'm trying to create some utility classes for use in my markdown.
Give this:
I get this:
I expected (wrongly?) this:
@pauldotknopf commented on GitHub (Jun 24, 2018):
Hmm, sorry, I see another issue here with the same issue: #202
I think it comes down to the number of
:'s used. Let me try that real quick.@pauldotknopf commented on GitHub (Jun 24, 2018):
Yup, this works:
Any ideas why that is required? Pandoc seems to handle it (correctly?).
@xoofx commented on GitHub (Jul 10, 2018):
Yes, it was mainly by design/implementation practicability (reusing an existing component to perform the parsing) but if Pandoc is actually not doing that, we can adopt a similar behavior. It may require a dedicated parser through. PR Welcome (don't have spare time for this!)