diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/command/empty_paragraphs.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/command/empty_paragraphs.md b/test/command/empty_paragraphs.md index 3064d3f7d..001aaf1b0 100644 --- a/test/command/empty_paragraphs.md +++ b/test/command/empty_paragraphs.md @@ -1,5 +1,5 @@ ``` -% pandoc -f native -t docx | pandoc -f docx -t native +% pandoc -f native -t docx -o - | pandoc -f docx -t native [Para [Str "hi"], Para [], Para [], Para [Str "lo"]] ^D [Para [Str "hi"] @@ -7,7 +7,7 @@ ``` ``` -% pandoc -f native -t docx+empty_paragraphs | pandoc -f docx -t native +% 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"] @@ -15,7 +15,7 @@ ``` ``` -% pandoc -f native -t docx | pandoc -f docx+empty_paragraphs -t native +% 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"] @@ -23,7 +23,7 @@ ``` ``` -% pandoc -f native -t docx+empty_paragraphs | pandoc -f docx+empty_paragraphs -t native +% 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"] |