aboutsummaryrefslogtreecommitdiff
path: root/test/command/empty_paragraphs.md
diff options
context:
space:
mode:
Diffstat (limited to 'test/command/empty_paragraphs.md')
-rw-r--r--test/command/empty_paragraphs.md20
1 files changed, 14 insertions, 6 deletions
diff --git a/test/command/empty_paragraphs.md b/test/command/empty_paragraphs.md
index 1f7c73fae..6efbab9cd 100644
--- a/test/command/empty_paragraphs.md
+++ b/test/command/empty_paragraphs.md
@@ -2,28 +2,32 @@
% pandoc -f native -t docx -o - | pandoc -f docx -t native
[Para [Str "hi"], Para [], Para [], Para [Str "lo"]]
^D
-[ Para [ Str "hi" ], Para [ Str "lo" ] ]
+[ Para [ Str "hi" ] , Para [ Str "lo" ] ]
```
```
% pandoc -f native -t docx+empty_paragraphs -o - | pandoc -f docx -t native
[Para [Str "hi"], Para [], Para [], Para [Str "lo"]]
^D
-[ Para [ Str "hi" ], Para [ Str "lo" ] ]
+[ Para [ Str "hi" ] , Para [ Str "lo" ] ]
```
```
% pandoc -f native -t docx -o - | pandoc -f docx+empty_paragraphs -t native
[Para [Str "hi"], Para [], Para [], Para [Str "lo"]]
^D
-[ Para [ Str "hi" ], Para [ Str "lo" ] ]
+[ Para [ Str "hi" ] , Para [ Str "lo" ] ]
```
```
% pandoc -f native -t docx+empty_paragraphs -o - | pandoc -f docx+empty_paragraphs -t native
[Para [Str "hi"], Para [], Para [], Para [Str "lo"]]
^D
-[ Para [ Str "hi" ], Para [], Para [], Para [ Str "lo" ] ]
+[ Para [ Str "hi" ]
+, Para []
+, Para []
+, Para [ Str "lo" ]
+]
```
```
@@ -51,7 +55,11 @@
<p></p>
<p>lo</p>
^D
-[ Para [ Str "hi" ], Para [], Para [], Para [ Str "lo" ] ]
+[ Para [ Str "hi" ]
+, Para []
+, Para []
+, Para [ Str "lo" ]
+]
```
```
@@ -61,7 +69,7 @@
<p></p>
<p>lo</p>
^D
-[ Para [ Str "hi" ], Para [ Str "lo" ] ]
+[ Para [ Str "hi" ] , Para [ Str "lo" ] ]
```
```