8e53489cbc
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.
6 lines
60 B
Markdown
6 lines
60 B
Markdown
```
|
|
% pandoc -f gfm -t gfm
|
|
# ~~Header~~
|
|
^D
|
|
# ~~Header~~
|
|
```
|