aboutsummaryrefslogtreecommitdiff
path: root/test/command
diff options
context:
space:
mode:
Diffstat (limited to 'test/command')
-rw-r--r--test/command/5360.md19
-rw-r--r--test/command/6009.md18
2 files changed, 37 insertions, 0 deletions
diff --git a/test/command/5360.md b/test/command/5360.md
new file mode 100644
index 000000000..924c1ea28
--- /dev/null
+++ b/test/command/5360.md
@@ -0,0 +1,19 @@
+```
+% pandoc -t native
+::: {.foo}
+<table>
+ <tr>
+ <td>hi</td>
+ </tr>
+</table>
+:::
+^D
+[Div ("",["foo"],[])
+ [RawBlock (Format "html") "<table>"
+ ,RawBlock (Format "html") "<tr>"
+ ,RawBlock (Format "html") "<td>"
+ ,Plain [Str "hi"]
+ ,RawBlock (Format "html") "</td>"
+ ,RawBlock (Format "html") "</tr>"
+ ,RawBlock (Format "html") "</table>"]]
+```
diff --git a/test/command/6009.md b/test/command/6009.md
new file mode 100644
index 000000000..ed6b46cbb
--- /dev/null
+++ b/test/command/6009.md
@@ -0,0 +1,18 @@
+```
+% pandoc -t native
+ <tr>
+ <td>
+ </td>
+ </tr>
+
+x
+
+ y
+^D
+[RawBlock (Format "html") "<tr>"
+,RawBlock (Format "html") "<td>"
+,RawBlock (Format "html") "</td>"
+,RawBlock (Format "html") "</tr>"
+,Para [Str "x"]
+,CodeBlock ("",[],[]) "y"]
+```