From 6a2562efb5f3e6ba1ff79e00baef72f9b089dac4 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Mon, 4 Dec 2017 15:41:09 -0800 Subject: Rewrite empty_paragraphs test so it will run on Windows. --- test/command/empty_paragraphs.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test') 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"] -- cgit v1.2.3