mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-01 13:15:51 +00:00
The substantive change here is the `-strue` will now work instead of being interpreted as `-s -true`. This is somewhat ad hoc, but I don't think we'll ever have an output format named `rue`, so it's probably okay.
49 lines
514 B
Markdown
49 lines
514 B
Markdown
```
|
|
% pandoc -iNtslidy
|
|
# One
|
|
|
|
- one
|
|
- two
|
|
^D
|
|
<div id="one" class="slide section level1" number="1">
|
|
<h1><span class="header-section-number">1</span> One</h1>
|
|
<ul class="incremental">
|
|
<li>one</li>
|
|
<li>two</li>
|
|
</ul>
|
|
</div>
|
|
```
|
|
|
|
````
|
|
% pandoc -pstnative
|
|
```
|
|
after tab
|
|
```
|
|
^D
|
|
Pandoc
|
|
Meta { unMeta = fromList [] }
|
|
[ CodeBlock ( "" , [] , [] ) "\tafter tab" ]
|
|
````
|
|
|
|
```
|
|
% pandoc -sfalse
|
|
hi
|
|
^D
|
|
<p>hi</p>
|
|
```
|
|
|
|
```
|
|
% pandoc --standalone=false
|
|
hi
|
|
^D
|
|
<p>hi</p>
|
|
```
|
|
|
|
```
|
|
% pandoc --standalone=FALSE
|
|
hi
|
|
^D
|
|
<p>hi</p>
|
|
```
|
|
|