aboutsummaryrefslogtreecommitdiff
path: root/test/command/4038.md
AgeCommit message (Collapse)AuthorFilesLines
2020-07-19Remove use of cmark-gfm for commonmark/gfm rendering.John MacFarlane1-1/+1
Instead rely on the markdown writer with appropriate extensions. Export writeCommonMark variant from Markdown writer. This changes a few small things in rendering markdown, e.g. w/r/t requiring backslashes before spaces inside super/subscripts.
2017-11-04Fix strikethrough in gfm writer.John MacFarlane1-0/+6
Previously we got a crash, because we were trying to print a native cmark STRIKETHROUGH node, and the commonmark writer in cmark-github doesn't support this. Work around this by using a raw node to add the strikethrough delimiters. Closes #4038.