You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* The header's comments were written incorrectly. A comment line in Roff
starts with a .\" sequence, whereas .\ is attempting to call a command
whose name starts with a space. Because Roff interpreters will discard
unrecognised control lines, the malformed "comments" were just noops.
* Repeating font macros have been used to format the synopsis instead of
escape sequences (\fB…\fR). This makes for admittedly more sustainable
source code for an editor who lacks knowledge of Roff.
* A basic macro has been added to insert highlighted URLs with less line
noise. To insert a bold and underlined URL on a new line, one only has
to write ".ur http://…"
PR-URL: #7819
Reviewed-By: James M Snell <[email protected]>
Reviewed-By: Jeremiah Senkpiel <[email protected]>
.\" Man page syntax (actually roff syntax) is somewhat obscure, but the
6
+
.\" important part is is that .<letter> specifies <letter>'s syntax for that
7
+
.\" line, and \f<letter> specifies it for the characters that follow.
8
+
9
+
.\" .B Bold line
10
+
.\" .I Italic line (Rendered as underlined text in terminals)
11
+
.\" .BI Alternating bold/italics without spaces between arguments.
12
+
.\" Use `\ ` to include an "unpaddable" (literal) space in the output.
13
+
.\" .RI Alternating roman/italic
14
+
15
+
.\" See http://liw.fi/manpages/ for an overview, or http://www.troff.org/54.pdf
0 commit comments