mirror of
https://github.com/xoofx/markdig.git
synced 2026-02-12 21:39:32 +00:00
Support for underline and strikethrough? #74
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 @markau on GitHub (Dec 7, 2016).
Sweet library. I am using a very simplistic implementation just to convert basic markdown to html for display on a page.
I am not sure our users will even need this feature, but I noticed some markdown is not being rendered as expected; in this case underline (++) and strikethrough (~~).
I don't know if these are strictly valid markdown tags or not, so this might not actually be an issue with markdig. I thought I would raise it anyway. Cheers!
@xoofx commented on GitHub (Dec 7, 2016):
They are already supported (check also babelmark + markdig advanced)
In order to use them, you need to activate the proper extension on the markdown pipeline:
@markau commented on GitHub (Dec 7, 2016):
Ahh, thanks for pointing this out @xoofx !
(And I see strikethrough in the README, oops...!)