mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-17 13:05:48 +00:00
28 lines
319 B
Markdown
28 lines
319 B
Markdown
```
|
|
% pandoc -t plain
|
|
# Chapter one
|
|
|
|
(@foo) an example list.
|
|
(@) second item.
|
|
|
|
# Chapter two
|
|
|
|
(1@bar) reset the counter to one.
|
|
(@) another.
|
|
|
|
Foo is (@foo) and bar is (@bar).
|
|
^D
|
|
Chapter one
|
|
|
|
(1) an example list.
|
|
(2) second item.
|
|
|
|
Chapter two
|
|
|
|
(1) reset the counter to one.
|
|
(2) another.
|
|
|
|
Foo is (1) and bar is (1).
|
|
|
|
```
|