mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-01 21:25:48 +00:00
This affects T.P.RoffChar, T.P.Writers.Roff, and the Man and Ms writers. That is, `\(xy` instead of `\[xy]`. This was the original AT&T troff form and is the most widely supported. The bracketed form causes problem for some tools, e.g. `makewhatis` on macOS. Closes #10716.
90 lines
1.1 KiB
Markdown
90 lines
1.1 KiB
Markdown
```
|
|
% pandoc -t html --ascii
|
|
äéıå
|
|
^D
|
|
<p>äéıå</p>
|
|
```
|
|
|
|
```
|
|
% pandoc -t latex --ascii
|
|
äéıå
|
|
^D
|
|
\"{a}\'{e}\i\r{a}
|
|
```
|
|
|
|
```
|
|
% pandoc -t man --ascii
|
|
äéıå
|
|
^D
|
|
.PP
|
|
\(:a\('e\(.i\(oa
|
|
```
|
|
|
|
```
|
|
% pandoc -t ms --ascii
|
|
äéıå
|
|
^D
|
|
.LP
|
|
\(:a\('e\(.i\(oa
|
|
```
|
|
|
|
```
|
|
% pandoc -t docbook --ascii
|
|
äéıå
|
|
^D
|
|
<para>
|
|
äéıå
|
|
</para>
|
|
```
|
|
|
|
```
|
|
% pandoc -t jats --ascii
|
|
äéıå
|
|
^D
|
|
<p>äéıå</p>
|
|
```
|
|
|
|
```
|
|
% pandoc -t markdown-smart --ascii
|
|
"äéıå"
|
|
^D
|
|
“äéıå”
|
|
```
|
|
|
|
# CommonMark tests
|
|
|
|
```
|
|
% pandoc -f commonmark -t commonmark --ascii
|
|
hello … ok? … bye
|
|
^D
|
|
hello … ok? … bye
|
|
```
|
|
|
|
```
|
|
% pandoc -f commonmark+smart -t commonmark-smart --ascii --wrap=none
|
|
"hi"...dog's breath---cat 5--6
|
|
^D
|
|
“hi”…dog’s breath—cat 5–6
|
|
```
|
|
|
|
```
|
|
% pandoc -f commonmark+smart -t commonmark+smart --ascii
|
|
"hi"...dog's breath---cat 5--6
|
|
^D
|
|
"hi"...dog's breath---cat 5--6
|
|
```
|
|
|
|
```
|
|
% pandoc -f commonmark -t commonmark --ascii
|
|
foo Ӓ bar
|
|
^D
|
|
foo Ӓ bar
|
|
```
|
|
|
|
```
|
|
% pandoc -f commonmark -t commonmark --ascii
|
|
\[foo\](bar)
|
|
^D
|
|
\[foo\](bar)
|
|
```
|