mirror of
https://github.com/xoofx/markdig.git
synced 2026-02-03 21:36:36 +00:00
Support for admonition extension #38
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 @mczachurski on GitHub (Jun 29, 2016).
Hi!
Could you add support for admonition extension? Admonition is simple markup which we can use to mark important part of documentation, it looks like this:
Here is a more detailed description: Admonition Extension. And here is an example how it should looks rendered on the page:
Example from Read The Docs page .
I've tried to implement this using IMarkdownExtension (and BlockParser), however it's really hard without documentation (and BlockParser is not so obvious).
Best regards,
Marcin.
@xoofx commented on GitHub (Jun 29, 2016):
Why not using custom containers?
With proper CSS styling it should be possible to achieve the same result.
@xoofx commented on GitHub (Jun 30, 2016):
@mczachurski did you finally find your way with the custom container extension?
@mczachurski commented on GitHub (Jul 1, 2016):
@xoofx yes it work like a charm. Thanks.