mirror of
https://github.com/xoofx/markdig.git
synced 2026-02-03 21:36:36 +00:00
Triple emphasis support #244
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 @XspeedPL on GitHub (Nov 20, 2018).
Hello,
As far as I know Markdig doesn't support italic and bold at once text by using triple emphasis.
Example: commonmark.js dingus link
EmphasisInline class has only IsDouble property. Either IsTriple or Count property could be introduced.
Cheers
@MihaZupan commented on GitHub (Nov 20, 2018):
It does, see babelmark
If you look at the syntax tree returned when parsing this text, you will see that it outputs
EmphasisInline(double) inside of anEmphasisInline(single).@XspeedPL commented on GitHub (Nov 20, 2018):
My bad, it does indeed work that way.