mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-02 21:55:44 +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.
21 lines
325 B
Markdown
21 lines
325 B
Markdown
```
|
||
% pandoc -t man
|
||
SEE ALSO
|
||
========
|
||
|
||
* [Milk](https://en.wikipedia.org/wiki/Milk)
|
||
* [EBNF](https://en.wikipedia.org/wiki/Extended_Backus–Naur_form)
|
||
^D
|
||
.SH SEE ALSO
|
||
.IP \(bu 2
|
||
\c
|
||
.UR https://en.wikipedia.org/wiki/Milk
|
||
Milk
|
||
.UE \c
|
||
.IP \(bu 2
|
||
\c
|
||
.UR https://en.wikipedia.org/wiki/Extended_Backus–Naur_form
|
||
EBNF
|
||
.UE \c
|
||
```
|