diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-11-04 10:35:52 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-11-04 10:35:52 -0700 |
commit | 8e53489cbca3f230eed94294af3810d2447db2af (patch) | |
tree | f0e172cf3775ba48ff0bc7b0fc4a70d07aa19edd /test | |
parent | d31a04dfb223fc807341a168693628864202b4de (diff) | |
download | pandoc-8e53489cbca3f230eed94294af3810d2447db2af.tar.gz |
Fix strikethrough in gfm writer.
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.
Diffstat (limited to 'test')
-rw-r--r-- | test/command/4038.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/command/4038.md b/test/command/4038.md new file mode 100644 index 000000000..121760540 --- /dev/null +++ b/test/command/4038.md @@ -0,0 +1,6 @@ +``` +% pandoc -f gfm -t gfm +# ~~Header~~ +^D +# ~~Header~~ +``` |