aboutsummaryrefslogtreecommitdiff
path: root/test/command/5797.md
diff options
context:
space:
mode:
Diffstat (limited to 'test/command/5797.md')
-rw-r--r--test/command/5797.md20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/command/5797.md b/test/command/5797.md
new file mode 100644
index 000000000..0509a341c
--- /dev/null
+++ b/test/command/5797.md
@@ -0,0 +1,20 @@
+```
+% pandoc -f html -t html
+<mark>Ctrl-C</mark>
+^D
+<mark>Ctrl-C</mark>
+```
+
+```
+% pandoc -f html -t native
+<mark>Ctrl-C</mark>
+^D
+[Plain [Span ("",["mark"],[]) [Str "Ctrl-C"]]]
+```
+
+```
+% pandoc -f native -t html
+[Plain [Span ("",["mark"],[]) [Str "Ctrl-C"]]]
+^D
+<mark>Ctrl-C</mark>
+```