diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-12-04 15:41:09 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-12-04 15:41:09 -0800 |
commit | 6a2562efb5f3e6ba1ff79e00baef72f9b089dac4 (patch) | |
tree | e4b42520750dbbf02e5d23ac1a817a4323b1d131 /test | |
parent | fac3953abf26d5b55fac9bdd6c74c0074660ab7a (diff) | |
download | pandoc-6a2562efb5f3e6ba1ff79e00baef72f9b089dac4.tar.gz |
Rewrite empty_paragraphs test so it will run on Windows.
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"] |