2017-12-04 19:31:06 +01:00
|
|
|
```
|
2017-12-05 00:41:09 +01:00
|
|
|
% pandoc -f native -t docx -o - | pandoc -f docx -t native
|
2017-12-04 19:31:06 +01:00
|
|
|
[Para [Str "hi"], Para [], Para [], Para [Str "lo"]]
|
|
|
|
^D
|
2021-09-29 06:17:53 +02:00
|
|
|
[ Para [ Str "hi" ] , Para [ Str "lo" ] ]
|
2017-12-04 19:31:06 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
```
|
2017-12-05 00:41:09 +01:00
|
|
|
% pandoc -f native -t docx+empty_paragraphs -o - | pandoc -f docx -t native
|
2017-12-04 19:31:06 +01:00
|
|
|
[Para [Str "hi"], Para [], Para [], Para [Str "lo"]]
|
|
|
|
^D
|
2021-09-29 06:17:53 +02:00
|
|
|
[ Para [ Str "hi" ] , Para [ Str "lo" ] ]
|
2017-12-04 19:31:06 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
```
|
2017-12-05 00:41:09 +01:00
|
|
|
% pandoc -f native -t docx -o - | pandoc -f docx+empty_paragraphs -t native
|
2017-12-04 19:31:06 +01:00
|
|
|
[Para [Str "hi"], Para [], Para [], Para [Str "lo"]]
|
|
|
|
^D
|
2021-09-29 06:17:53 +02:00
|
|
|
[ Para [ Str "hi" ] , Para [ Str "lo" ] ]
|
2017-12-04 19:31:06 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
```
|
2017-12-05 00:41:09 +01:00
|
|
|
% pandoc -f native -t docx+empty_paragraphs -o - | pandoc -f docx+empty_paragraphs -t native
|
2017-12-04 19:31:06 +01:00
|
|
|
[Para [Str "hi"], Para [], Para [], Para [Str "lo"]]
|
|
|
|
^D
|
2021-09-29 06:17:53 +02:00
|
|
|
[ Para [ Str "hi" ]
|
|
|
|
, Para []
|
|
|
|
, Para []
|
|
|
|
, Para [ Str "lo" ]
|
|
|
|
]
|
2017-12-04 19:31:06 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
```
|
|
|
|
% pandoc -f native -t html5
|
|
|
|
[Para [Str "hi"], Para [], Para [], Para [Str "lo"]]
|
|
|
|
^D
|
|
|
|
<p>hi</p>
|
|
|
|
<p>lo</p>
|
|
|
|
```
|
|
|
|
|
|
|
|
```
|
|
|
|
% pandoc -f native -t html5+empty_paragraphs
|
|
|
|
[Para [Str "hi"], Para [], Para [], Para [Str "lo"]]
|
|
|
|
^D
|
|
|
|
<p>hi</p>
|
|
|
|
<p></p>
|
|
|
|
<p></p>
|
|
|
|
<p>lo</p>
|
|
|
|
```
|
|
|
|
|
|
|
|
```
|
|
|
|
% pandoc -f html+empty_paragraphs -t native
|
|
|
|
<p>hi</p>
|
|
|
|
<p></p>
|
|
|
|
<p></p>
|
|
|
|
<p>lo</p>
|
|
|
|
^D
|
2021-09-29 06:17:53 +02:00
|
|
|
[ Para [ Str "hi" ]
|
|
|
|
, Para []
|
|
|
|
, Para []
|
|
|
|
, Para [ Str "lo" ]
|
|
|
|
]
|
2017-12-04 19:31:06 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
```
|
|
|
|
% pandoc -f html -t native
|
|
|
|
<p>hi</p>
|
|
|
|
<p></p>
|
|
|
|
<p></p>
|
|
|
|
<p>lo</p>
|
|
|
|
^D
|
2021-09-29 06:17:53 +02:00
|
|
|
[ Para [ Str "hi" ] , Para [ Str "lo" ] ]
|
2017-12-04 19:31:06 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
```
|
|
|
|
% pandoc -f native -t opendocument+empty_paragraphs
|
|
|
|
[Para [Str "hi"], Para [], Para [], Para [Str "lo"]]
|
|
|
|
^D
|
|
|
|
<text:p text:style-name="Text_20_body">hi</text:p>
|
|
|
|
<text:p text:style-name="Text_20_body"></text:p>
|
|
|
|
<text:p text:style-name="Text_20_body"></text:p>
|
|
|
|
<text:p text:style-name="Text_20_body">lo</text:p>
|
|
|
|
```
|
|
|
|
|
|
|
|
```
|
|
|
|
% pandoc -f native -t opendocument
|
|
|
|
[Para [Str "hi"], Para [], Para [], Para [Str "lo"]]
|
|
|
|
^D
|
|
|
|
<text:p text:style-name="Text_20_body">hi</text:p>
|
|
|
|
<text:p text:style-name="Text_20_body">lo</text:p>
|
|
|
|
```
|