summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-07-11 15:52:38 +0200
committerJohn MacFarlane <jgm@berkeley.edu>2017-07-11 15:52:38 +0200
commit41209ea6765e9898d7e15c4c945c06275b6c0420 (patch)
tree7415aa9ad52d0db7ad831c0de88facbf19b8102b /test
parente6cdaea27fd588d43f037bf14868e1b9b147835c (diff)
HTML reader: Ensure that paragraphs are closed properly...
when the parent block element closes, even without `</p>`. Closes #3794.
Diffstat (limited to 'test')
-rw-r--r--test/command/3794.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/command/3794.md b/test/command/3794.md
new file mode 100644
index 000000000..b56e7b504
--- /dev/null
+++ b/test/command/3794.md
@@ -0,0 +1,7 @@
+```
+% pandoc -f html -t native
+<div><p>hello</div>
+^D
+[Div ("",[],[])
+ [Para [Str "hello"]]]
+```