summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-12-04 15:41:09 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2017-12-04 15:41:09 -0800
commit6a2562efb5f3e6ba1ff79e00baef72f9b089dac4 (patch)
treee4b42520750dbbf02e5d23ac1a817a4323b1d131 /test
parentfac3953abf26d5b55fac9bdd6c74c0074660ab7a (diff)
Rewrite empty_paragraphs test so it will run on Windows.
Diffstat (limited to 'test')
-rw-r--r--test/command/empty_paragraphs.md8
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"]