Merge branch 'vendor/MPFR'
[dragonfly.git] / contrib / mdocml / mdoc.7
1 .\"     $Id: mdoc.7,v 1.174 2011/01/04 23:32:21 kristaps Exp $
2 .\"
3 .\" Copyright (c) 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
4 .\" Copyright (c) 2010 Ingo Schwarze <schwarze@openbsd.org>
5 .\"
6 .\" Permission to use, copy, modify, and distribute this software for any
7 .\" purpose with or without fee is hereby granted, provided that the above
8 .\" copyright notice and this permission notice appear in all copies.
9 .\"
10 .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 .\"
18 .Dd $Mdocdate: January 4 2011 $
19 .Dt MDOC 7
20 .Os
21 .Sh NAME
22 .Nm mdoc
23 .Nd mdoc language reference
24 .Sh DESCRIPTION
25 The
26 .Nm mdoc
27 language is used to format
28 .Bx
29 .Ux
30 manuals.
31 This reference document describes its syntax, structure, and
32 usage.
33 The reference implementation is
34 .Xr mandoc 1 ;
35 the
36 .Sx COMPATIBILITY
37 section describes compatibility with other troff \-mdoc implementations.
38 .Pp
39 An
40 .Nm
41 document follows simple rules: lines beginning with the control
42 character
43 .Sq \.
44 are parsed for macros.
45 Other lines are interpreted within the scope of
46 prior macros:
47 .Bd -literal -offset indent
48 \&.Sh Macro lines change control state.
49 Other lines are interpreted within the current state.
50 .Ed
51 .Sh LANGUAGE SYNTAX
52 .Nm
53 documents may contain only graphable 7-bit ASCII characters, the space
54 character, and, in certain circumstances, the tab character.
55 All manuals must have
56 .Ux
57 line terminators.
58 .Ss Comments
59 Text following a
60 .Sq \e\*q ,
61 whether in a macro or free-form text line, is ignored to the end of
62 line.
63 A macro line with only a control character and comment escape,
64 .Sq \&.\e\*q ,
65 is also ignored.
66 Macro lines with only a control character and optional whitespace are
67 stripped from input.
68 .Ss Reserved Characters
69 Within a macro line, the following characters are reserved:
70 .Pp
71 .Bl -tag -width Ds -offset indent -compact
72 .It \&.
73 .Pq period
74 .It \&,
75 .Pq comma
76 .It \&:
77 .Pq colon
78 .It \&;
79 .Pq semicolon
80 .It \&(
81 .Pq left-parenthesis
82 .It \&)
83 .Pq right-parenthesis
84 .It \&[
85 .Pq left-bracket
86 .It \&]
87 .Pq right-bracket
88 .It \&?
89 .Pq question
90 .It \&!
91 .Pq exclamation
92 .It \&|
93 .Pq vertical bar
94 .El
95 .Pp
96 Use of reserved characters is described in
97 .Sx MACRO SYNTAX .
98 For general use in macro lines, these characters can either be escaped
99 with a non-breaking space
100 .Pq Sq \e&
101 or, if applicable, an appropriate escape sequence can be used.
102 .Ss Special Characters
103 Special characters may occur in both macro and free-form lines.
104 Sequences begin with the escape character
105 .Sq \e
106 followed by either an open-parenthesis
107 .Sq \&(
108 for two-character sequences; an open-bracket
109 .Sq \&[
110 for n-character sequences (terminated at a close-bracket
111 .Sq \&] ) ;
112 or a single one character sequence.
113 See
114 .Xr mandoc_char 7
115 for a complete list.
116 Examples include
117 .Sq \e(em
118 .Pq em-dash
119 and
120 .Sq \ee
121 .Pq back-slash .
122 .Ss Text Decoration
123 Terms may be text-decorated using the
124 .Sq \ef
125 escape followed by an indicator: B (bold), I (italic), R (Roman), or P
126 (revert to previous mode):
127 .Pp
128 .Dl \efBbold\efR \efIitalic\efP
129 .Pp
130 A numerical representation 3, 2, or 1 (bold, italic, and Roman,
131 respectively) may be used instead.
132 A text decoration is valid within
133 the current font scope only: if a macro opens a font scope alongside
134 its own scope, such as
135 .Sx \&Bf
136 .Cm \&Sy ,
137 in-scope invocations of
138 .Sq \ef
139 are only valid within the font scope of the macro.
140 If
141 .Sq \ef
142 is specified outside of any font scope, such as in unenclosed, free-form
143 text, it will affect the remainder of the document.
144 .Pp
145 Note this form is
146 .Em not
147 recommended for
148 .Nm ,
149 which encourages semantic annotation.
150 .Ss Predefined Strings
151 Historically,
152 troff
153 also defined a set of package-specific
154 .Dq predefined strings ,
155 which, like
156 .Sx Special Characters ,
157 mark special output characters and strings by way of input codes.
158 Predefined strings are escaped with the slash-asterisk,
159 .Sq \e* :
160 single-character
161 .Sq \e*X ,
162 two-character
163 .Sq \e*(XX ,
164 and N-character
165 .Sq \e*[N] .
166 See
167 .Xr mandoc_char 7
168 for a complete list.
169 Examples include
170 .Sq \e*(Am
171 .Pq ampersand
172 and
173 .Sq \e*(Ba
174 .Pq vertical bar .
175 .Ss Whitespace
176 Whitespace consists of the space character.
177 In free-form lines, whitespace is preserved within a line; unescaped
178 trailing spaces are stripped from input (unless in a literal context).
179 Blank free-form lines, which may include whitespace, are only permitted
180 within literal contexts.
181 .Pp
182 In macro lines, whitespace delimits arguments and is discarded.
183 If arguments are quoted, whitespace within the quotes is retained.
184 .Ss Quotation
185 Macro arguments may be quoted with double-quotes to group
186 space-delimited terms or to retain blocks of whitespace.
187 A quoted argument begins with a double-quote preceded by whitespace.
188 The next double-quote not pairwise adjacent to another double-quote
189 terminates the literal, regardless of surrounding whitespace.
190 .Pp
191 Note that any quoted text, even if it would cause a macro invocation
192 when unquoted, is considered literal text.
193 Thus, the following produces
194 .Sq Op "Fl a" :
195 .Bd -literal -offset indent
196 \&.Op "Fl a"
197 .Ed
198 .Pp
199 In free-form mode, quotes are regarded as opaque text.
200 .Ss Dates
201 There are several macros in
202 .Nm
203 that require a date argument.
204 The canonical form for dates is the American format:
205 .Pp
206 .D1 Cm Month Day , Year
207 .Pp
208 The
209 .Cm Day
210 value is an optionally zero-padded numeral.
211 The
212 .Cm Month
213 value is the full month name.
214 The
215 .Cm Year
216 value is the full four-digit year.
217 .Pp
218 Reduced form dates are broken-down canonical form dates:
219 .Pp
220 .D1 Cm Month , Year
221 .D1 Cm Year
222 .Pp
223 Some examples of valid dates follow:
224 .Pp
225 .D1 "May, 2009" Pq reduced form
226 .D1 "2009" Pq reduced form
227 .D1 "May 20, 2009" Pq canonical form
228 .Ss Scaling Widths
229 Many macros support scaled widths for their arguments, such as
230 stipulating a two-inch list indentation with the following:
231 .Bd -literal -offset indent
232 \&.Bl -tag -width 2i
233 .Ed
234 .Pp
235 The syntax for scaled widths is
236 .Sq Li [+-]?[0-9]*.[0-9]*[:unit:] ,
237 where a decimal must be preceded or proceeded by at least one digit.
238 Negative numbers, while accepted, are truncated to zero.
239 The following scaling units are accepted:
240 .Pp
241 .Bl -tag -width Ds -offset indent -compact
242 .It c
243 centimetre
244 .It i
245 inch
246 .It P
247 pica (~1/6 inch)
248 .It p
249 point (~1/72 inch)
250 .It f
251 synonym for
252 .Sq u
253 .It v
254 default vertical span
255 .It m
256 width of rendered
257 .Sq m
258 .Pq em
259 character
260 .It n
261 width of rendered
262 .Sq n
263 .Pq en
264 character
265 .It u
266 default horizontal span
267 .It M
268 mini-em (~1/100 em)
269 .El
270 .Pp
271 Using anything other than
272 .Sq m ,
273 .Sq n ,
274 .Sq u ,
275 or
276 .Sq v
277 is necessarily non-portable across output media.
278 See
279 .Sx COMPATIBILITY .
280 .Ss Sentence Spacing
281 When composing a manual, make sure that sentences end at the end of
282 a line.
283 By doing so, front-ends will be able to apply the proper amount of
284 spacing after the end of sentence (unescaped) period, exclamation mark,
285 or question mark followed by zero or more non-sentence closing
286 delimiters (
287 .Ns Sq \&) ,
288 .Sq \&] ,
289 .Sq \&' ,
290 .Sq \&" ) .
291 .Pp
292 The proper spacing is also intelligently preserved if a sentence ends at
293 the boundary of a macro line.
294 For example:
295 .Pp
296 .Dl \&Xr mandoc 1 \.
297 .Dl \&Fl T \&Ns \&Cm ascii \.
298 .Sh MANUAL STRUCTURE
299 A well-formed
300 .Nm
301 document consists of a document prologue followed by one or more
302 sections.
303 .Pp
304 The prologue, which consists of the
305 .Sx \&Dd ,
306 .Sx \&Dt ,
307 and
308 .Sx \&Os
309 macros in that order, is required for every document.
310 .Pp
311 The first section (sections are denoted by
312 .Sx \&Sh )
313 must be the NAME section, consisting of at least one
314 .Sx \&Nm
315 followed by
316 .Sx \&Nd .
317 .Pp
318 Following that, convention dictates specifying at least the
319 .Em SYNOPSIS
320 and
321 .Em DESCRIPTION
322 sections, although this varies between manual sections.
323 .Pp
324 The following is a well-formed skeleton
325 .Nm
326 file:
327 .Bd -literal -offset indent
328 \&.Dd $\&Mdocdate$
329 \&.Dt mdoc 7
330 \&.Os
331 \&.Sh NAME
332 \&.Nm foo
333 \&.Nd a description goes here
334 \&.\e\*q .Sh LIBRARY
335 \&.\e\*q For sections 2, 3, & 9 only.
336 \&.\e\*q Not used in OpenBSD.
337 \&.Sh SYNOPSIS
338 \&.Nm foo
339 \&.Op Fl options
340 \&.Ar
341 \&.Sh DESCRIPTION
342 The
343 \&.Nm
344 utility processes files ...
345 \&.\e\*q .Sh IMPLEMENTATION NOTES
346 \&.\e\*q Not used in OpenBSD.
347 \&.\e\*q .Sh RETURN VALUES
348 \&.\e\*q For sections 2, 3, & 9 only.
349 \&.\e\*q .Sh ENVIRONMENT
350 \&.\e\*q For sections 1, 6, 7, & 8 only.
351 \&.\e\*q .Sh FILES
352 \&.\e\*q .Sh EXIT STATUS
353 \&.\e\*q For sections 1, 6, & 8 only.
354 \&.\e\*q .Sh EXAMPLES
355 \&.\e\*q .Sh DIAGNOSTICS
356 \&.\e\*q For sections 1, 4, 6, 7, & 8 only.
357 \&.\e\*q .Sh ERRORS
358 \&.\e\*q For sections 2, 3, & 9 only.
359 \&.\e\*q .Sh SEE ALSO
360 \&.\e\*q .Xr foobar 1
361 \&.\e\*q .Sh STANDARDS
362 \&.\e\*q .Sh HISTORY
363 \&.\e\*q .Sh AUTHORS
364 \&.\e\*q .Sh CAVEATS
365 \&.\e\*q .Sh BUGS
366 \&.\e\*q .Sh SECURITY CONSIDERATIONS
367 \&.\e\*q Not used in OpenBSD.
368 .Ed
369 .Pp
370 The sections in an
371 .Nm
372 document are conventionally ordered as they appear above.
373 Sections should be composed as follows:
374 .Bl -ohang -offset Ds
375 .It Em NAME
376 The name(s) and a one line description of the documented material.
377 The syntax for this as follows:
378 .Bd -literal -offset indent
379 \&.Nm name0 ,
380 \&.Nm name1 ,
381 \&.Nm name2
382 \&.Nd a one line description
383 .Ed
384 .Pp
385 The
386 .Sx \&Nm
387 macro(s) must precede the
388 .Sx \&Nd
389 macro.
390 .Pp
391 See
392 .Sx \&Nm
393 and
394 .Sx \&Nd .
395 .It Em LIBRARY
396 The name of the library containing the documented material, which is
397 assumed to be a function in a section 2, 3, or 9 manual.
398 The syntax for this is as follows:
399 .Bd -literal -offset indent
400 \&.Lb libarm
401 .Ed
402 .Pp
403 See
404 .Sx \&Lb .
405 .It Em SYNOPSIS
406 Documents the utility invocation syntax, function call syntax, or device
407 configuration.
408 .Pp
409 For the first, utilities (sections 1, 6, and 8), this is
410 generally structured as follows:
411 .Bd -literal -offset indent
412 \&.Nm foo
413 \&.Op Fl v
414 \&.Op Fl o Ar file
415 \&.Op Ar
416 \&.Nm bar
417 \&.Op Fl v
418 \&.Op Fl o Ar file
419 \&.Op Ar
420 .Ed
421 .Pp
422 For the second, function calls (sections 2, 3, 9):
423 .Bd -literal -offset indent
424 \&.In header.h
425 \&.Vt extern const char *global;
426 \&.Ft "char *"
427 \&.Fn foo "const char *src"
428 \&.Ft "char *"
429 \&.Fn bar "const char *src"
430 .Ed
431 .Pp
432 And for the third, configurations (section 4):
433 .Bd -literal -offset indent
434 \&.Cd \*qit* at isa? port 0x2e\*q
435 \&.Cd \*qit* at isa? port 0x4e\*q
436 .Ed
437 .Pp
438 Manuals not in these sections generally don't need a
439 .Em SYNOPSIS .
440 .Pp
441 Some macros are displayed differently in the
442 .Em SYNOPSIS
443 section, particularly
444 .Sx \&Nm ,
445 .Sx \&Cd ,
446 .Sx \&Fd ,
447 .Sx \&Fn ,
448 .Sx \&Fo ,
449 .Sx \&In ,
450 .Sx \&Vt ,
451 and
452 .Sx \&Ft .
453 All of these macros are output on their own line.
454 If two such dissimilar macros are pairwise invoked (except for
455 .Sx \&Ft
456 before
457 .Sx \&Fo
458 or
459 .Sx \&Fn ) ,
460 they are separated by a vertical space, unless in the case of
461 .Sx \&Fo ,
462 .Sx \&Fn ,
463 and
464 .Sx \&Ft ,
465 which are always separated by vertical space.
466 .Pp
467 When text and macros following an
468 .Sx \&Nm
469 macro starting an input line span multiple output lines,
470 all output lines but the first will be indented to align
471 with the text immediately following the
472 .Sx \&Nm
473 macro, up to the next
474 .Sx \&Nm ,
475 .Sx \&Sh ,
476 or
477 .Sx \&Ss
478 macro or the end of an enclosing block, whichever comes first.
479 .It Em DESCRIPTION
480 This expands upon the brief, one line description in
481 .Em NAME .
482 It usually contains a breakdown of the options (if documenting a
483 command), such as:
484 .Bd -literal -offset indent
485 The arguments are as follows:
486 \&.Bl \-tag \-width Ds
487 \&.It Fl v
488 Print verbose information.
489 \&.El
490 .Ed
491 .Pp
492 Manuals not documenting a command won't include the above fragment.
493 .It Em IMPLEMENTATION NOTES
494 Implementation-specific notes should be kept here.
495 This is useful when implementing standard functions that may have side
496 effects or notable algorithmic implications.
497 .It Em RETURN VALUES
498 This section documents the
499 return values of functions in sections 2, 3, and 9.
500 .Pp
501 See
502 .Sx \&Rv .
503 .It Em ENVIRONMENT
504 Lists the environment variables used by the utility,
505 and explains the syntax and semantics of their values.
506 The
507 .Xr environ 7
508 manual provides examples of typical content and formatting.
509 .Pp
510 See
511 .Sx \&Ev .
512 .It Em FILES
513 Documents files used.
514 It's helpful to document both the file name and a short description of how
515 the file is used (created, modified, etc.).
516 .Pp
517 See
518 .Sx \&Pa .
519 .It Em EXIT STATUS
520 This section documents the
521 command exit status for section 1, 6, and 8 utilities.
522 Historically, this information was described in
523 .Em DIAGNOSTICS ,
524 a practise that is now discouraged.
525 .Pp
526 See
527 .Sx \&Ex .
528 .It Em EXAMPLES
529 Example usages.
530 This often contains snippets of well-formed, well-tested invocations.
531 Make sure that examples work properly!
532 .It Em DIAGNOSTICS
533 Documents error conditions.
534 This is most useful in section 4 manuals.
535 Historically, this section was used in place of
536 .Em EXIT STATUS
537 for manuals in sections 1, 6, and 8; however, this practise is
538 discouraged.
539 .Pp
540 See
541 .Sx \&Bl
542 .Fl diag .
543 .It Em ERRORS
544 Documents error handling in sections 2, 3, and 9.
545 .Pp
546 See
547 .Sx \&Er .
548 .It Em SEE ALSO
549 References other manuals with related topics.
550 This section should exist for most manuals.
551 Cross-references should conventionally be ordered first by section, then
552 alphabetically.
553 .Pp
554 See
555 .Sx \&Xr .
556 .It Em STANDARDS
557 References any standards implemented or used.
558 If not adhering to any standards, the
559 .Em HISTORY
560 section should be used instead.
561 .Pp
562 See
563 .Sx \&St .
564 .It Em HISTORY
565 A brief history of the subject, including where support first appeared.
566 .It Em AUTHORS
567 Credits to the person or persons who wrote the code and/or documentation.
568 Authors should generally be noted by both name and email address.
569 .Pp
570 See
571 .Sx \&An .
572 .It Em CAVEATS
573 Common misuses and misunderstandings should be explained
574 in this section.
575 .It Em BUGS
576 Known bugs, limitations, and work-arounds should be described
577 in this section.
578 .It Em SECURITY CONSIDERATIONS
579 Documents any security precautions that operators should consider.
580 .El
581 .Sh MACRO SYNTAX
582 Macros are one to three three characters in length and begin with a
583 control character,
584 .Sq \&. ,
585 at the beginning of the line.
586 An arbitrary amount of whitespace may sit between the control character
587 and the macro name.
588 Thus, the following are equivalent:
589 .Bd -literal -offset indent
590 \&.Pp
591 \&.\ \ \ \&Pp
592 .Ed
593 .Pp
594 The syntax of a macro depends on its classification.
595 In this section,
596 .Sq \-arg
597 refers to macro arguments, which may be followed by zero or more
598 .Sq parm
599 parameters;
600 .Sq \&Yo
601 opens the scope of a macro; and if specified,
602 .Sq \&Yc
603 closes it out.
604 .Pp
605 The
606 .Em Callable
607 column indicates that the macro may also be called by passing its name
608 as an argument to another macro.
609 If a macro is not callable but its name appears as an argument
610 to another macro, it is interpreted as opaque text.
611 For example,
612 .Sq \&.Fl \&Sh
613 produces
614 .Sq Fl \&Sh .
615 .Pp
616 The
617 .Em Parsed
618 column indicates whether the macro may call other macros by receiving
619 their names as arguments.
620 If a macro is not parsed but the name of another macro appears
621 as an argument, it is interpreted as opaque text.
622 .Pp
623 The
624 .Em Scope
625 column, if applicable, describes closure rules.
626 .Ss Block full-explicit
627 Multi-line scope closed by an explicit closing macro.
628 All macros contains bodies; only
629 .Sx \&Bf
630 contains a head.
631 .Bd -literal -offset indent
632 \&.Yo \(lB\-arg \(lBparm...\(rB\(rB \(lBhead...\(rB
633 \(lBbody...\(rB
634 \&.Yc
635 .Ed
636 .Pp
637 .Bl -column -compact -offset indent "MacroX" "CallableX" "ParsedX" "closed by XXX"
638 .It Em Macro Ta Em Callable Ta Em Parsed Ta Em Scope
639 .It Sx \&Bd  Ta    \&No     Ta    \&No     Ta    closed by Sx \&Ed
640 .It Sx \&Bf  Ta    \&No     Ta    \&No     Ta    closed by Sx \&Ef
641 .It Sx \&Bk  Ta    \&No     Ta    \&No     Ta    closed by Sx \&Ek
642 .It Sx \&Bl  Ta    \&No     Ta    \&No     Ta    closed by Sx \&El
643 .It Sx \&Ed  Ta    \&No     Ta    \&No     Ta    opened by Sx \&Bd
644 .It Sx \&Ef  Ta    \&No     Ta    \&No     Ta    opened by Sx \&Bf
645 .It Sx \&Ek  Ta    \&No     Ta    \&No     Ta    opened by Sx \&Bk
646 .It Sx \&El  Ta    \&No     Ta    \&No     Ta    opened by Sx \&Bl
647 .El
648 .Ss Block full-implicit
649 Multi-line scope closed by end-of-file or implicitly by another macro.
650 All macros have bodies; some
651 .Po
652 .Sx \&It Fl bullet ,
653 .Fl hyphen ,
654 .Fl dash ,
655 .Fl enum ,
656 .Fl item
657 .Pc
658 don't have heads; only one
659 .Po
660 .Sx \&It
661 in
662 .Sx \&Bl Fl column
663 .Pc
664 has multiple heads.
665 .Bd -literal -offset indent
666 \&.Yo \(lB\-arg \(lBparm...\(rB\(rB \(lBhead... \(lBTa head...\(rB\(rB
667 \(lBbody...\(rB
668 .Ed
669 .Pp
670 .Bl -column -compact -offset indent "MacroX" "CallableX" "ParsedX" "closed by XXXXXXXXXXX"
671 .It Em Macro Ta Em Callable Ta Em Parsed Ta Em Scope
672 .It Sx \&It  Ta    \&No     Ta    Yes      Ta    closed by Sx \&It , Sx \&El
673 .It Sx \&Nd  Ta    \&No     Ta    \&No     Ta    closed by Sx \&Sh
674 .It Sx \&Nm  Ta    \&No     Ta  Yes Ta closed by Sx \&Nm , Sx \&Sh , Sx \&Ss
675 .It Sx \&Sh  Ta    \&No     Ta    \&No     Ta    closed by Sx \&Sh
676 .It Sx \&Ss  Ta    \&No     Ta    \&No     Ta    closed by Sx \&Sh , Sx \&Ss
677 .El
678 .Pp
679 Note that the
680 .Sx \&Nm
681 macro is a
682 .Sx Block full-implicit
683 macro only when invoked as the first macro
684 in a
685 .Em SYNOPSIS
686 section line, else it is
687 .Sx In-line .
688 .Ss Block partial-explicit
689 Like block full-explicit, but also with single-line scope.
690 Each has at least a body and, in limited circumstances, a head
691 .Po
692 .Sx \&Fo ,
693 .Sx \&Eo
694 .Pc
695 and/or tail
696 .Pq Sx \&Ec .
697 .Bd -literal -offset indent
698 \&.Yo \(lB\-arg \(lBparm...\(rB\(rB \(lBhead...\(rB
699 \(lBbody...\(rB
700 \&.Yc \(lBtail...\(rB
701
702 \&.Yo \(lB\-arg \(lBparm...\(rB\(rB \(lBhead...\(rB \
703 \(lBbody...\(rB \&Yc \(lBtail...\(rB
704 .Ed
705 .Pp
706 .Bl -column "MacroX" "CallableX" "ParsedX" "closed by XXXX" -compact -offset indent
707 .It Em Macro Ta Em Callable Ta Em Parsed Ta Em Scope
708 .It Sx \&Ac  Ta    Yes      Ta    Yes      Ta    opened by Sx \&Ao
709 .It Sx \&Ao  Ta    Yes      Ta    Yes      Ta    closed by Sx \&Ac
710 .It Sx \&Bc  Ta    Yes      Ta    Yes      Ta    closed by Sx \&Bo
711 .It Sx \&Bo  Ta    Yes      Ta    Yes      Ta    opened by Sx \&Bc
712 .It Sx \&Brc Ta    Yes      Ta    Yes      Ta    opened by Sx \&Bro
713 .It Sx \&Bro Ta    Yes      Ta    Yes      Ta    closed by Sx \&Brc
714 .It Sx \&Dc  Ta    Yes      Ta    Yes      Ta    opened by Sx \&Do
715 .It Sx \&Do  Ta    Yes      Ta    Yes      Ta    closed by Sx \&Dc
716 .It Sx \&Ec  Ta    Yes      Ta    Yes      Ta    opened by Sx \&Eo
717 .It Sx \&Eo  Ta    Yes      Ta    Yes      Ta    closed by Sx \&Ec
718 .It Sx \&Fc  Ta    Yes      Ta    Yes      Ta    opened by Sx \&Fo
719 .It Sx \&Fo  Ta    \&No     Ta    \&No     Ta    closed by Sx \&Fc
720 .It Sx \&Oc  Ta    Yes      Ta    Yes      Ta    closed by Sx \&Oo
721 .It Sx \&Oo  Ta    Yes      Ta    Yes      Ta    opened by Sx \&Oc
722 .It Sx \&Pc  Ta    Yes      Ta    Yes      Ta    closed by Sx \&Po
723 .It Sx \&Po  Ta    Yes      Ta    Yes      Ta    opened by Sx \&Pc
724 .It Sx \&Qc  Ta    Yes      Ta    Yes      Ta    opened by Sx \&Oo
725 .It Sx \&Qo  Ta    Yes      Ta    Yes      Ta    closed by Sx \&Oc
726 .It Sx \&Re  Ta    \&No     Ta    \&No     Ta    opened by Sx \&Rs
727 .It Sx \&Rs  Ta    \&No     Ta    \&No     Ta    closed by Sx \&Re
728 .It Sx \&Sc  Ta    Yes      Ta    Yes      Ta    opened by Sx \&So
729 .It Sx \&So  Ta    Yes      Ta    Yes      Ta    closed by Sx \&Sc
730 .It Sx \&Xc  Ta    Yes      Ta    Yes      Ta    opened by Sx \&Xo
731 .It Sx \&Xo  Ta    Yes      Ta    Yes      Ta    closed by Sx \&Xc
732 .El
733 .Ss Block partial-implicit
734 Like block full-implicit, but with single-line scope closed by
735 .Sx Reserved Characters
736 or end of line.
737 .Bd -literal -offset indent
738 \&.Yo \(lB\-arg \(lBval...\(rB\(rB \(lBbody...\(rB \(lBres...\(rB
739 .Ed
740 .Pp
741 .Bl -column "MacroX" "CallableX" "ParsedX" -compact -offset indent
742 .It Em Macro Ta Em Callable Ta Em Parsed
743 .It Sx \&Aq  Ta    Yes      Ta    Yes
744 .It Sx \&Bq  Ta    Yes      Ta    Yes
745 .It Sx \&Brq Ta    Yes      Ta    Yes
746 .It Sx \&D1  Ta    \&No     Ta    \&Yes
747 .It Sx \&Dl  Ta    \&No     Ta    Yes
748 .It Sx \&Dq  Ta    Yes      Ta    Yes
749 .It Sx \&Op  Ta    Yes      Ta    Yes
750 .It Sx \&Pq  Ta    Yes      Ta    Yes
751 .It Sx \&Ql  Ta    Yes      Ta    Yes
752 .It Sx \&Qq  Ta    Yes      Ta    Yes
753 .It Sx \&Sq  Ta    Yes      Ta    Yes
754 .It Sx \&Vt  Ta    Yes      Ta    Yes
755 .El
756 .Pp
757 Note that the
758 .Sx \&Vt
759 macro is a
760 .Sx Block partial-implicit
761 only when invoked as the first macro
762 in a
763 .Em SYNOPSIS
764 section line, else it is
765 .Sx In-line .
766 .Ss In-line
767 Closed by
768 .Sx Reserved Characters ,
769 end of line, fixed argument lengths, and/or subsequent macros.
770 In-line macros have only text children.
771 If a number (or inequality) of arguments is
772 .Pq n ,
773 then the macro accepts an arbitrary number of arguments.
774 .Bd -literal -offset indent
775 \&.Yo \(lB\-arg \(lBval...\(rB\(rB \(lBargs...\(rB \(lBres...\(rB
776
777 \&.Yo \(lB\-arg \(lBval...\(rB\(rB \(lBargs...\(rB Yc...
778
779 \&.Yo \(lB\-arg \(lBval...\(rB\(rB arg0 arg1 argN
780 .Ed
781 .Pp
782 .Bl -column "MacroX" "CallableX" "ParsedX" "Arguments" -compact -offset indent
783 .It Em Macro Ta Em Callable Ta Em Parsed Ta Em Arguments
784 .It Sx \&%A  Ta    \&No     Ta    \&No     Ta    >0
785 .It Sx \&%B  Ta    \&No     Ta    \&No     Ta    >0
786 .It Sx \&%C  Ta    \&No     Ta    \&No     Ta    >0
787 .It Sx \&%D  Ta    \&No     Ta    \&No     Ta    >0
788 .It Sx \&%I  Ta    \&No     Ta    \&No     Ta    >0
789 .It Sx \&%J  Ta    \&No     Ta    \&No     Ta    >0
790 .It Sx \&%N  Ta    \&No     Ta    \&No     Ta    >0
791 .It Sx \&%O  Ta    \&No     Ta    \&No     Ta    >0
792 .It Sx \&%P  Ta    \&No     Ta    \&No     Ta    >0
793 .It Sx \&%Q  Ta    \&No     Ta    \&No     Ta    >0
794 .It Sx \&%R  Ta    \&No     Ta    \&No     Ta    >0
795 .It Sx \&%T  Ta    \&No     Ta    \&No     Ta    >0
796 .It Sx \&%U  Ta    \&No     Ta    \&No     Ta    >0
797 .It Sx \&%V  Ta    \&No     Ta    \&No     Ta    >0
798 .It Sx \&Ad  Ta    Yes      Ta    Yes      Ta    n
799 .It Sx \&An  Ta    Yes      Ta    Yes      Ta    n
800 .It Sx \&Ap  Ta    Yes      Ta    Yes      Ta    0
801 .It Sx \&Ar  Ta    Yes      Ta    Yes      Ta    n
802 .It Sx \&At  Ta    Yes      Ta    Yes      Ta    1
803 .It Sx \&Bsx Ta    Yes      Ta    Yes      Ta    n
804 .It Sx \&Bt  Ta    \&No     Ta    \&No     Ta    0
805 .It Sx \&Bx  Ta    Yes      Ta    Yes      Ta    n
806 .It Sx \&Cd  Ta    Yes      Ta    Yes      Ta    >0
807 .It Sx \&Cm  Ta    Yes      Ta    Yes      Ta    n
808 .It Sx \&Db  Ta    \&No     Ta    \&No     Ta    1
809 .It Sx \&Dd  Ta    \&No     Ta    \&No     Ta    n
810 .It Sx \&Dt  Ta    \&No     Ta    \&No     Ta    n
811 .It Sx \&Dv  Ta    Yes      Ta    Yes      Ta    n
812 .It Sx \&Dx  Ta    Yes      Ta    Yes      Ta    n
813 .It Sx \&Em  Ta    Yes      Ta    Yes      Ta    >0
814 .It Sx \&En  Ta    \&No     Ta    \&No     Ta    0
815 .It Sx \&Er  Ta    Yes      Ta    Yes      Ta    >0
816 .It Sx \&Es  Ta    \&No     Ta    \&No     Ta    0
817 .It Sx \&Ev  Ta    Yes      Ta    Yes      Ta    n
818 .It Sx \&Ex  Ta    \&No     Ta    \&No     Ta    n
819 .It Sx \&Fa  Ta    Yes      Ta    Yes      Ta    n
820 .It Sx \&Fd  Ta    \&No     Ta    \&No     Ta    >0
821 .It Sx \&Fl  Ta    Yes      Ta    Yes      Ta    n
822 .It Sx \&Fn  Ta    Yes      Ta    Yes      Ta    >0
823 .It Sx \&Fr  Ta    \&No     Ta    \&No     Ta    n
824 .It Sx \&Ft  Ta    Yes      Ta    Yes      Ta    n
825 .It Sx \&Fx  Ta    Yes      Ta    Yes      Ta    n
826 .It Sx \&Hf  Ta    \&No     Ta    \&No     Ta    n
827 .It Sx \&Ic  Ta    Yes      Ta    Yes      Ta    >0
828 .It Sx \&In  Ta    \&No     Ta    \&No     Ta    n
829 .It Sx \&Lb  Ta    \&No     Ta    \&No     Ta    1
830 .It Sx \&Li  Ta    Yes      Ta    Yes      Ta    n
831 .It Sx \&Lk  Ta    Yes      Ta    Yes      Ta    n
832 .It Sx \&Lp  Ta    \&No     Ta    \&No     Ta    0
833 .It Sx \&Ms  Ta    Yes      Ta    Yes      Ta    >0
834 .It Sx \&Mt  Ta    Yes      Ta    Yes      Ta    >0
835 .It Sx \&Nm  Ta    Yes      Ta    Yes      Ta    n
836 .It Sx \&No  Ta    Yes      Ta    Yes      Ta    0
837 .It Sx \&Ns  Ta    Yes      Ta    Yes      Ta    0
838 .It Sx \&Nx  Ta    Yes      Ta    Yes      Ta    n
839 .It Sx \&Os  Ta    \&No     Ta    \&No     Ta    n
840 .It Sx \&Ot  Ta    \&No     Ta    \&No     Ta    n
841 .It Sx \&Ox  Ta    Yes      Ta    Yes      Ta    n
842 .It Sx \&Pa  Ta    Yes      Ta    Yes      Ta    n
843 .It Sx \&Pf  Ta    Yes      Ta    Yes      Ta    1
844 .It Sx \&Pp  Ta    \&No     Ta    \&No     Ta    0
845 .It Sx \&Rv  Ta    \&No     Ta    \&No     Ta    n
846 .It Sx \&Sm  Ta    \&No     Ta    \&No     Ta    1
847 .It Sx \&St  Ta    \&No     Ta    Yes      Ta    1
848 .It Sx \&Sx  Ta    Yes      Ta    Yes      Ta    >0
849 .It Sx \&Sy  Ta    Yes      Ta    Yes      Ta    >0
850 .It Sx \&Tn  Ta    Yes      Ta    Yes      Ta    >0
851 .It Sx \&Ud  Ta    \&No     Ta    \&No     Ta    0
852 .It Sx \&Ux  Ta    Yes      Ta    Yes      Ta    n
853 .It Sx \&Va  Ta    Yes      Ta    Yes      Ta    n
854 .It Sx \&Vt  Ta    Yes      Ta    Yes      Ta    >0
855 .It Sx \&Xr  Ta    Yes      Ta    Yes      Ta    >0
856 .It Sx \&br  Ta    \&No     Ta    \&No     Ta    0
857 .It Sx \&sp  Ta    \&No     Ta    \&No     Ta    1
858 .El
859 .Sh REFERENCE
860 This section is a canonical reference of all macros, arranged
861 alphabetically.
862 For the scoping of individual macros, see
863 .Sx MACRO SYNTAX .
864 .Ss \&%A
865 Author name of an
866 .Sx \&Rs
867 block.
868 Multiple authors should each be accorded their own
869 .Sx \%%A
870 line.
871 Author names should be ordered with full or abbreviated forename(s)
872 first, then full surname.
873 .Ss \&%B
874 Book title of an
875 .Sx \&Rs
876 block.
877 This macro may also be used in a non-bibliographic context when
878 referring to book titles.
879 .Ss \&%C
880 Publication city or location of an
881 .Sx \&Rs
882 block.
883 .Ss \&%D
884 Publication date of an
885 .Sx \&Rs
886 block.
887 This should follow the reduced or canonical form syntax described in
888 .Sx Dates .
889 .Ss \&%I
890 Publisher or issuer name of an
891 .Sx \&Rs
892 block.
893 .Ss \&%J
894 Journal name of an
895 .Sx \&Rs
896 block.
897 .Ss \&%N
898 Issue number (usually for journals) of an
899 .Sx \&Rs
900 block.
901 .Ss \&%O
902 Optional information of an
903 .Sx \&Rs
904 block.
905 .Ss \&%P
906 Book or journal page number of an
907 .Sx \&Rs
908 block.
909 .Ss \&%Q
910 Institutional author (school, government, etc.) of an
911 .Sx \&Rs
912 block.
913 Multiple institutional authors should each be accorded their own
914 .Sx \&%Q
915 line.
916 .Ss \&%R
917 Technical report name of an
918 .Sx \&Rs
919 block.
920 .Ss \&%T
921 Article title of an
922 .Sx \&Rs
923 block.
924 This macro may also be used in a non-bibliographical context when
925 referring to article titles.
926 .Ss \&%U
927 URI of reference document.
928 .Ss \&%V
929 Volume number of an
930 .Sx \&Rs
931 block.
932 .Ss \&Ac
933 Close an
934 .Sx \&Ao
935 block.
936 Does not have any tail arguments.
937 .Ss \&Ad
938 Memory address.
939 Do not use this for postal addresses.
940 .Pp
941 Examples:
942 .Dl \&.Ad [0,$]
943 .Dl \&.Ad 0x00000000
944 .Ss \&An
945 Author name.
946 Requires either the name of an author or one of the following arguments:
947 .Pp
948 .Bl -tag -width "-nosplitX" -offset indent -compact
949 .It Fl split
950 Start a new output line before each subsequent invocation of
951 .Sx \&An .
952 .It Fl nosplit
953 The opposite of
954 .Fl split .
955 .El
956 .Pp
957 The default is
958 .Fl nosplit .
959 The effect of selecting either of the
960 .Fl split
961 modes ends at the beginning of the
962 .Em AUTHORS
963 section.
964 In the
965 .Em AUTHORS
966 section, the default is
967 .Fl nosplit
968 for the first author listing and
969 .Fl split
970 for all other author listings.
971 .Pp
972 Examples:
973 .Dl \&.An -nosplit
974 .Dl \&.An Kristaps Dzonsons \&Aq kristaps@bsd.lv
975 .Ss \&Ao
976 Begin a block enclosed by angle brackets.
977 Does not have any head arguments.
978 .Pp
979 Examples:
980 .Dl \&.Fl -key= \&Ns \&Ao \&Ar val \&Ac
981 .Pp
982 See also
983 .Sx \&Aq .
984 .Ss \&Ap
985 Inserts an apostrophe without any surrounding whitespace.
986 This is generally used as a grammatical device when referring to the verb
987 form of a function.
988 .Pp
989 Examples:
990 .Dl \&.Fn execve \&Ap d
991 .Ss \&Aq
992 Encloses its arguments in angle brackets.
993 .Pp
994 Examples:
995 .Dl \&.Fl -key= \&Ns \&Aq \&Ar val
996 .Pp
997 .Em Remarks :
998 this macro is often abused for rendering URIs, which should instead use
999 .Sx \&Lk
1000 or
1001 .Sx \&Mt ,
1002 or to note pre-processor
1003 .Dq Li #include
1004 statements, which should use
1005 .Sx \&In .
1006 .Pp
1007 See also
1008 .Sx \&Ao .
1009 .Ss \&Ar
1010 Command arguments.
1011 If an argument is not provided, the string
1012 .Dq file ...\&
1013 is used as a default.
1014 .Pp
1015 Examples:
1016 .Dl \&.Fl o \&Ns \&Ar file1
1017 .Dl \&.Ar
1018 .Dl \&.Ar arg1 , arg2 .
1019 .Ss \&At
1020 Formats an AT&T version.
1021 Accepts one optional argument:
1022 .Pp
1023 .Bl -tag -width "v[1-7] | 32vX" -offset indent -compact
1024 .It Cm v[1-7] | 32v
1025 A version of
1026 .At .
1027 .It Cm V[.[1-4]]?
1028 A version of
1029 .At V .
1030 .El
1031 .Pp
1032 Note that these arguments do not begin with a hyphen.
1033 .Pp
1034 Examples:
1035 .Dl \&.At
1036 .Dl \&.At V.1
1037 .Pp
1038 See also
1039 .Sx \&Bsx ,
1040 .Sx \&Bx ,
1041 .Sx \&Dx ,
1042 .Sx \&Fx ,
1043 .Sx \&Nx ,
1044 .Sx \&Ox ,
1045 and
1046 .Sx \&Ux .
1047 .Ss \&Bc
1048 Close a
1049 .Sx \&Bo
1050 block.
1051 Does not have any tail arguments.
1052 .Ss \&Bd
1053 Begin a display block.
1054 Its syntax is as follows:
1055 .Bd -ragged -offset indent
1056 .Pf \. Sx \&Bd
1057 .Fl Ns Ar type
1058 .Op Fl offset Ar width
1059 .Op Fl compact
1060 .Ed
1061 .Pp
1062 Display blocks are used to select a different indentation and
1063 justification than the one used by the surrounding text.
1064 They may contain both macro lines and free-form text lines.
1065 By default, a display block is preceded by a vertical space.
1066 .Pp
1067 The
1068 .Ar type
1069 must be one of the following:
1070 .Bl -tag -width 13n -offset indent
1071 .It Fl centered
1072 Centre-justify each line.
1073 Using this display type is not recommended; many
1074 .Nm
1075 implementations render it poorly.
1076 .It Fl filled
1077 Left- and right-justify the block.
1078 .It Fl literal
1079 Do not justify the block at all.
1080 Preserve white space as it appears in the input.
1081 .It Fl ragged
1082 Only left-justify the block.
1083 .It Fl unfilled
1084 An alias for
1085 .Fl literal .
1086 .El
1087 .Pp
1088 The
1089 .Ar type
1090 must be provided first.
1091 Additional arguments may follow:
1092 .Bl -tag -width 13n -offset indent
1093 .It Fl offset Ar width
1094 Indent the display by the
1095 .Ar width ,
1096 which may be one of the following:
1097 .Bl -item
1098 .It
1099 One of the pre-defined strings
1100 .Cm indent ,
1101 the width of standard indentation;
1102 .Cm indent-two ,
1103 twice
1104 .Cm indent ;
1105 .Cm left ,
1106 which has no effect;
1107 .Cm right ,
1108 which justifies to the right margin; or
1109 .Cm center ,
1110 which aligns around an imagined centre axis.
1111 .It
1112 A macro invocation, which selects a predefined width
1113 associated with that macro.
1114 The most popular is the imaginary macro
1115 .Ar \&Ds ,
1116 which resolves to
1117 .Sy 6n .
1118 .It
1119 A width using the syntax described in
1120 .Sx Scaling Widths .
1121 .It
1122 An arbitrary string, which indents by the length of this string.
1123 .El
1124 .Pp
1125 When the argument is missing,
1126 .Fl offset
1127 is ignored.
1128 .It Fl compact
1129 Do not assert vertical space before the display.
1130 .El
1131 .Pp
1132 Examples:
1133 .Bd -literal -offset indent
1134 \&.Bd \-literal \-offset indent \-compact
1135    Hello       world.
1136 \&.Ed
1137 .Ed
1138 .Pp
1139 See also
1140 .Sx \&D1
1141 and
1142 .Sx \&Dl .
1143 .Ss \&Bf
1144 Change the font mode for a scoped block of text.
1145 Its syntax is as follows:
1146 .Bd -ragged -offset indent
1147 .Pf \. Sx \&Bf
1148 .Oo
1149 .Fl emphasis | literal | symbolic |
1150 .Cm \&Em | \&Li | \&Sy
1151 .Oc
1152 .Ed
1153 .Pp
1154 The
1155 .Fl emphasis
1156 and
1157 .Cm \&Em
1158 argument are equivalent, as are
1159 .Fl symbolic
1160 and
1161 .Cm \&Sy ,
1162 and
1163 .Fl literal
1164 and
1165 .Cm \&Li .
1166 Without an argument, this macro does nothing.
1167 The font mode continues until broken by a new font mode in a nested
1168 scope or
1169 .Sx \&Ef
1170 is encountered.
1171 .Pp
1172 See also
1173 .Sx \&Li ,
1174 .Sx \&Ef ,
1175 .Sx \&Em ,
1176 and
1177 .Sx \&Sy .
1178 .Ss \&Bk
1179 Keep the output generated from each macro input line together
1180 on one single output line.
1181 Line breaks in free-form text lines are unaffected.
1182 The syntax is as follows:
1183 .Pp
1184 .D1 Pf \. Sx \&Bk Fl words
1185 .Pp
1186 The
1187 .Fl words
1188 argument is required; additional arguments are ignored.
1189 .Pp
1190 The following example will not break within each
1191 .Sx \&Op
1192 macro line:
1193 .Bd -literal -offset indent
1194 \&.Bk \-words
1195 \&.Op Fl f Ar flags
1196 \&.Op Fl o Ar output
1197 \&.Ek
1198 .Ed
1199 .Pp
1200 Be careful in using over-long lines within a keep block!
1201 Doing so will clobber the right margin.
1202 .Ss \&Bl
1203 Begin a list.
1204 Lists consist of items specified using the
1205 .Sx \&It
1206 macro, containing a head or a body or both.
1207 The list syntax is as follows:
1208 .Bd -ragged -offset indent
1209 .Pf \. Sx \&Bl
1210 .Fl Ns Ar type
1211 .Op Fl width Ar val
1212 .Op Fl offset Ar val
1213 .Op Fl compact
1214 .Op HEAD ...
1215 .Ed
1216 .Pp
1217 The list
1218 .Ar type
1219 is mandatory and must be specified first.
1220 The
1221 .Fl width
1222 and
1223 .Fl offset
1224 arguments accept
1225 .Sx Scaling Widths
1226 or use the length of the given string.
1227 The
1228 .Fl offset
1229 is a global indentation for the whole list, affecting both item heads
1230 and bodies.
1231 For those list types supporting it, the
1232 .Fl width
1233 argument requests an additional indentation of item bodies,
1234 to be added to the
1235 .Fl offset .
1236 Unless the
1237 .Fl compact
1238 argument is specified, list entries are separated by vertical space.
1239 .Pp
1240 A list must specify one of the following list types:
1241 .Bl -tag -width 12n -offset indent
1242 .It Fl bullet
1243 No item heads can be specified, but a bullet will be printed at the head
1244 of each item.
1245 Item bodies start on the same output line as the bullet
1246 and are indented according to the
1247 .Fl width
1248 argument.
1249 .It Fl column
1250 A columnated list.
1251 The
1252 .Fl width
1253 argument has no effect; instead, each argument specifies the width
1254 of one column, using either the
1255 .Sx Scaling Widths
1256 syntax or the string length of the argument.
1257 If the first line of the body of a
1258 .Fl column
1259 list is not an
1260 .Sx \&It
1261 macro line,
1262 .Sx \&It
1263 contexts spanning one input line each are implied until an
1264 .Sx \&It
1265 macro line is encountered, at which point items start being interpreted as
1266 described in the
1267 .Sx \&It
1268 documentation.
1269 .It Fl dash
1270 Like
1271 .Fl bullet ,
1272 except that dashes are used in place of bullets.
1273 .It Fl diag
1274 Like
1275 .Fl inset ,
1276 except that item heads are not parsed for macro invocations.
1277 .\" but with additional formatting to the head.
1278 .It Fl enum
1279 A numbered list.
1280 Formatted like
1281 .Fl bullet ,
1282 except that cardinal numbers are used in place of bullets,
1283 starting at 1.
1284 .It Fl hang
1285 Like
1286 .Fl tag ,
1287 except that the first lines of item bodies are not indented, but follow
1288 the item heads like in
1289 .Fl inset
1290 lists.
1291 .It Fl hyphen
1292 Synonym for
1293 .Fl dash .
1294 .It Fl inset
1295 Item bodies follow items heads on the same line, using normal inter-word
1296 spacing.
1297 Bodies are not indented, and the
1298 .Fl width
1299 argument is ignored.
1300 .It Fl item
1301 No item heads can be specified, and none are printed.
1302 Bodies are not indented, and the
1303 .Fl width
1304 argument is ignored.
1305 .It Fl ohang
1306 Item bodies start on the line following item heads and are not indented.
1307 The
1308 .Fl width
1309 argument is ignored.
1310 .It Fl tag
1311 Item bodies are indented according to the
1312 .Fl width
1313 argument.
1314 When an item head fits inside the indentation, the item body follows
1315 this head on the same output line.
1316 Otherwise, the body starts on the output line following the head.
1317 .El
1318 .Pp
1319 See also
1320 .Sx \&El
1321 and
1322 .Sx \&It .
1323 .Ss \&Bo
1324 Begin a block enclosed by square brackets.
1325 Does not have any head arguments.
1326 .Pp
1327 Examples:
1328 .Bd -literal -offset indent -compact
1329 \&.Bo 1 ,
1330 \&.Dv BUFSIZ \&Bc
1331 .Ed
1332 .Pp
1333 See also
1334 .Sx \&Bq .
1335 .Ss \&Bq
1336 Encloses its arguments in square brackets.
1337 .Pp
1338 Examples:
1339 .Dl \&.Bq 1 , \&Dv BUFSIZ
1340 .Pp
1341 .Em Remarks :
1342 this macro is sometimes abused to emulate optional arguments for
1343 commands; the correct macros to use for this purpose are
1344 .Sx \&Op ,
1345 .Sx \&Oo ,
1346 and
1347 .Sx \&Oc .
1348 .Pp
1349 See also
1350 .Sx \&Bo .
1351 .Ss \&Brc
1352 Close a
1353 .Sx \&Bro
1354 block.
1355 Does not have any tail arguments.
1356 .Ss \&Bro
1357 Begin a block enclosed by curly braces.
1358 Does not have any head arguments.
1359 .Pp
1360 Examples:
1361 .Bd -literal -offset indent -compact
1362 \&.Bro 1 , ... ,
1363 \&.Va n \&Brc
1364 .Ed
1365 .Pp
1366 See also
1367 .Sx \&Brq .
1368 .Ss \&Brq
1369 Encloses its arguments in curly braces.
1370 .Pp
1371 Examples:
1372 .Dl \&.Brq 1 , ... , \&Va n
1373 .Pp
1374 See also
1375 .Sx \&Bro .
1376 .Ss \&Bsx
1377 Format the BSD/OS version provided as an argument, or a default value if
1378 no argument is provided.
1379 .Pp
1380 Examples:
1381 .Dl \&.Bsx 1.0
1382 .Dl \&.Bsx
1383 .Pp
1384 See also
1385 .Sx \&At ,
1386 .Sx \&Bx ,
1387 .Sx \&Dx ,
1388 .Sx \&Fx ,
1389 .Sx \&Nx ,
1390 .Sx \&Ox ,
1391 and
1392 .Sx \&Ux .
1393 .Ss \&Bt
1394 Prints
1395 .Dq is currently in beta test .
1396 .Ss \&Bx
1397 Format the BSD version provided as an argument, or a default value if no
1398 argument is provided.
1399 .Pp
1400 Examples:
1401 .Dl \&.Bx 4.4
1402 .Dl \&.Bx
1403 .Pp
1404 See also
1405 .Sx \&At ,
1406 .Sx \&Bsx ,
1407 .Sx \&Dx ,
1408 .Sx \&Fx ,
1409 .Sx \&Nx ,
1410 .Sx \&Ox ,
1411 and
1412 .Sx \&Ux .
1413 .Ss \&Cd
1414 Kernel configuration declaration.
1415 This denotes strings accepted by
1416 .Xr config 8 .
1417 .Pp
1418 Examples:
1419 .Dl \&.Cd device le0 at scode?
1420 .Pp
1421 .Em Remarks :
1422 this macro is commonly abused by using quoted literals to retain
1423 whitespace and align consecutive
1424 .Sx \&Cd
1425 declarations.
1426 This practise is discouraged.
1427 .Ss \&Cm
1428 Command modifiers.
1429 Useful when specifying configuration options or keys.
1430 .Pp
1431 Examples:
1432 .Dl \&.Cm ControlPath
1433 .Dl \&.Cm ControlMaster
1434 .Pp
1435 See also
1436 .Sx \&Fl .
1437 .Ss \&D1
1438 One-line indented display.
1439 This is formatted by the default rules and is useful for simple indented
1440 statements.
1441 It is followed by a newline.
1442 .Pp
1443 Examples:
1444 .Dl \&.D1 \&Fl abcdefgh
1445 .Pp
1446 See also
1447 .Sx \&Bd
1448 and
1449 .Sx \&Dl .
1450 .Ss \&Db
1451 Switch debugging mode.
1452 Its syntax is as follows:
1453 .Pp
1454 .D1 Pf \. Sx \&Db Cm on | off
1455 .Pp
1456 This macro is ignored by
1457 .Xr mandoc 1 .
1458 .Ss \&Dc
1459 Close a
1460 .Sx \&Do
1461 block.
1462 Does not have any tail arguments.
1463 .Ss \&Dd
1464 Document date.
1465 This is the mandatory first macro of any
1466 .Nm
1467 manual.
1468 Its syntax is as follows:
1469 .Pp
1470 .D1 Pf \. Sx \&Dd Op Ar date
1471 .Pp
1472 The
1473 .Ar date
1474 may be either
1475 .Ar $\&Mdocdate$ ,
1476 which signifies the current manual revision date dictated by
1477 .Xr cvs 1 ,
1478 or instead a valid canonical date as specified by
1479 .Sx Dates .
1480 If a date does not conform or is empty, the current date is used.
1481 .Pp
1482 Examples:
1483 .Dl \&.Dd $\&Mdocdate$
1484 .Dl \&.Dd $\&Mdocdate: July 21 2007$
1485 .Dl \&.Dd July 21, 2007
1486 .Pp
1487 See also
1488 .Sx \&Dt
1489 and
1490 .Sx \&Os .
1491 .Ss \&Dl
1492 One-line intended display.
1493 This is formatted as literal text and is useful for commands and
1494 invocations.
1495 It is followed by a newline.
1496 .Pp
1497 Examples:
1498 .Dl \&.Dl % mandoc mdoc.7 \e(ba less
1499 .Pp
1500 See also
1501 .Sx \&Bd
1502 and
1503 .Sx \&D1 .
1504 .Ss \&Do
1505 Begin a block enclosed by double quotes.
1506 Does not have any head arguments.
1507 .Pp
1508 Examples:
1509 .Bd -literal -offset indent -compact
1510 \&.Do
1511 April is the cruellest month
1512 \&.Dc
1513 \e(em T.S. Eliot
1514 .Ed
1515 .Pp
1516 See also
1517 .Sx \&Dq .
1518 .Ss \&Dq
1519 Encloses its arguments in
1520 .Dq typographic
1521 double-quotes.
1522 .Pp
1523 Examples:
1524 .Bd -literal -offset indent -compact
1525 \&.Dq April is the cruellest month
1526 \e(em T.S. Eliot
1527 .Ed
1528 .Pp
1529 See also
1530 .Sx \&Qq ,
1531 .Sx \&Sq ,
1532 and
1533 .Sx \&Do .
1534 .Ss \&Dt
1535 Document title.
1536 This is the mandatory second macro of any
1537 .Nm
1538 file.
1539 Its syntax is as follows:
1540 .Bd -ragged -offset indent
1541 .Pf \. Sx \&Dt
1542 .Oo
1543 .Ar title
1544 .Oo
1545 .Ar section
1546 .Op Ar volume | arch
1547 .Oc
1548 .Oc
1549 .Ed
1550 .Pp
1551 Its arguments are as follows:
1552 .Bl -tag -width Ds -offset Ds
1553 .It Ar title
1554 The document's title (name), defaulting to
1555 .Dq UNKNOWN
1556 if unspecified.
1557 It should be capitalised.
1558 .It Ar section
1559 The manual section.
1560 This may be one of
1561 .Ar 1
1562 .Pq utilities ,
1563 .Ar 2
1564 .Pq system calls ,
1565 .Ar 3
1566 .Pq libraries ,
1567 .Ar 3p
1568 .Pq Perl libraries ,
1569 .Ar 4
1570 .Pq devices ,
1571 .Ar 5
1572 .Pq file formats ,
1573 .Ar 6
1574 .Pq games ,
1575 .Ar 7
1576 .Pq miscellaneous ,
1577 .Ar 8
1578 .Pq system utilities ,
1579 .Ar 9
1580 .Pq kernel functions ,
1581 .Ar X11
1582 .Pq X Window System ,
1583 .Ar X11R6
1584 .Pq X Window System ,
1585 .Ar unass
1586 .Pq unassociated ,
1587 .Ar local
1588 .Pq local system ,
1589 .Ar draft
1590 .Pq draft manual ,
1591 or
1592 .Ar paper
1593 .Pq paper .
1594 It should correspond to the manual's filename suffix and defaults to
1595 .Dq 1
1596 if unspecified.
1597 .It Ar volume
1598 This overrides the volume inferred from
1599 .Ar section .
1600 This field is optional, and if specified, must be one of
1601 .Ar USD
1602 .Pq users' supplementary documents ,
1603 .Ar PS1
1604 .Pq programmers' supplementary documents ,
1605 .Ar AMD
1606 .Pq administrators' supplementary documents ,
1607 .Ar SMM
1608 .Pq system managers' manuals ,
1609 .Ar URM
1610 .Pq users' reference manuals ,
1611 .Ar PRM
1612 .Pq programmers' reference manuals ,
1613 .Ar KM
1614 .Pq kernel manuals ,
1615 .Ar IND
1616 .Pq master index ,
1617 .Ar MMI
1618 .Pq master index ,
1619 .Ar LOCAL
1620 .Pq local manuals ,
1621 .Ar LOC
1622 .Pq local manuals ,
1623 or
1624 .Ar CON
1625 .Pq contributed manuals .
1626 .It Ar arch
1627 This specifies a specific relevant architecture.
1628 If
1629 .Ar volume
1630 is not provided, it may be used in its place, else it may be used
1631 subsequent that.
1632 It, too, is optional.
1633 It must be one of
1634 .Ar alpha ,
1635 .Ar amd64 ,
1636 .Ar amiga ,
1637 .Ar arc ,
1638 .Ar arm ,
1639 .Ar armish ,
1640 .Ar aviion ,
1641 .Ar hp300 ,
1642 .Ar hppa ,
1643 .Ar hppa64 ,
1644 .Ar i386 ,
1645 .Ar landisk ,
1646 .Ar loongson ,
1647 .Ar luna88k ,
1648 .Ar mac68k ,
1649 .Ar macppc ,
1650 .Ar mips64 ,
1651 .Ar mvme68k ,
1652 .Ar mvme88k ,
1653 .Ar mvmeppc ,
1654 .Ar pmax ,
1655 .Ar sgi ,
1656 .Ar socppc ,
1657 .Ar sparc ,
1658 .Ar sparc64 ,
1659 .Ar sun3 ,
1660 .Ar vax ,
1661 or
1662 .Ar zaurus .
1663 .El
1664 .Pp
1665 Examples:
1666 .Dl \&.Dt FOO 1
1667 .Dl \&.Dt FOO 4 KM
1668 .Dl \&.Dt FOO 9 i386
1669 .Pp
1670 See also
1671 .Sx \&Dd
1672 and
1673 .Sx \&Os .
1674 .Ss \&Dv
1675 Defined variables such as preprocessor constants.
1676 .Pp
1677 Examples:
1678 .Dl \&.Dv BUFSIZ
1679 .Dl \&.Dv STDOUT_FILENO
1680 .Pp
1681 See also
1682 .Sx \&Er .
1683 .Ss \&Dx
1684 Format the DragonFly BSD version provided as an argument, or a default
1685 value if no argument is provided.
1686 .Pp
1687 Examples:
1688 .Dl \&.Dx 2.4.1
1689 .Dl \&.Dx
1690 .Pp
1691 See also
1692 .Sx \&At ,
1693 .Sx \&Bsx ,
1694 .Sx \&Bx ,
1695 .Sx \&Fx ,
1696 .Sx \&Nx ,
1697 .Sx \&Ox ,
1698 and
1699 .Sx \&Ux .
1700 .Ss \&Ec
1701 Close a scope started by
1702 .Sx \&Eo .
1703 Its syntax is as follows:
1704 .Pp
1705 .D1 Pf \. Sx \&Ec Op Ar TERM
1706 .Pp
1707 The
1708 .Ar TERM
1709 argument is used as the enclosure tail, for example, specifying \e(rq
1710 will emulate
1711 .Sx \&Dc .
1712 .Ss \&Ed
1713 End a display context started by
1714 .Sx \&Bd .
1715 .Ss \&Ef
1716 End a font mode context started by
1717 .Sx \&Bf .
1718 .Ss \&Ek
1719 End a keep context started by
1720 .Sx \&Bk .
1721 .Ss \&El
1722 End a list context started by
1723 .Sx \&Bl .
1724 .Pp
1725 See also
1726 .Sx \&Bl
1727 and
1728 .Sx \&It .
1729 .Ss \&Em
1730 Denotes text that should be emphasised.
1731 Note that this is a presentation term and should not be used for
1732 stylistically decorating technical terms.
1733 .Pp
1734 Examples:
1735 .Dl \&.Em Warnings!
1736 .Dl \&.Em Remarks :
1737 .Pp
1738 See also
1739 .Sx \&Bf ,
1740 .Sx \&Sy ,
1741 and
1742 .Sx \&Li .
1743 .Ss \&En
1744 This macro is obsolete and not implemented in
1745 .Xr mandoc 1 .
1746 .Ss \&Eo
1747 An arbitrary enclosure.
1748 Its syntax is as follows:
1749 .Pp
1750 .D1 Pf \. Sx \&Eo Op Ar TERM
1751 .Pp
1752 The
1753 .Ar TERM
1754 argument is used as the enclosure head, for example, specifying \e(lq
1755 will emulate
1756 .Sx \&Do .
1757 .Ss \&Er
1758 Display error constants.
1759 .Pp
1760 Examples:
1761 .Dl \&.Er EPERM
1762 .Dl \&.Er ENOENT
1763 .Pp
1764 See also
1765 .Sx \&Dv .
1766 .Ss \&Es
1767 This macro is obsolete and not implemented.
1768 .Ss \&Ev
1769 Environmental variables such as those specified in
1770 .Xr environ 7 .
1771 .Pp
1772 Examples:
1773 .Dl \&.Ev DISPLAY
1774 .Dl \&.Ev PATH
1775 .Ss \&Ex
1776 Insert a standard sentence regarding exit values.
1777 Its syntax is as follows:
1778 .Pp
1779 .D1 Pf \. Sx \&Ex Fl std Op Ar utility
1780 .Pp
1781 When
1782 .Ar utility
1783 is not specified, the document's name set by
1784 .Sx \&Nm
1785 is used.
1786 .Pp
1787 See also
1788 .Sx \&Rv .
1789 .Ss \&Fa
1790 Function argument.
1791 Its syntax is as follows:
1792 .Bd -ragged -offset indent
1793 .Pf \. Sx \&Fa
1794 .Op Cm argtype
1795 .Cm argname
1796 .Ed
1797 .Pp
1798 This may be invoked for names with or without the corresponding type.
1799 It is also used to specify the field name of a structure.
1800 Most often, the
1801 .Sx \&Fa
1802 macro is used in the
1803 .Em SYNOPSIS
1804 within
1805 .Sx \&Fo
1806 section when documenting multi-line function prototypes.
1807 If invoked with multiple arguments, the arguments are separated by a
1808 comma.
1809 Furthermore, if the following macro is another
1810 .Sx \&Fa ,
1811 the last argument will also have a trailing comma.
1812 .Pp
1813 Examples:
1814 .Dl \&.Fa \(dqconst char *p\(dq
1815 .Dl \&.Fa \(dqint a\(dq \(dqint b\(dq \(dqint c\(dq
1816 .Dl \&.Fa foo
1817 .Pp
1818 See also
1819 .Sx \&Fo .
1820 .Ss \&Fc
1821 End a function context started by
1822 .Sx \&Fo .
1823 .Ss \&Fd
1824 Historically used to document include files.
1825 This usage has been deprecated in favour of
1826 .Sx \&In .
1827 Do not use this macro.
1828 .Pp
1829 See also
1830 .Sx MANUAL STRUCTURE
1831 and
1832 .Sx \&In .
1833 .Ss \&Fl
1834 Command-line flag.
1835 Used when listing arguments to command-line utilities.
1836 Prints a fixed-width hyphen
1837 .Sq \-
1838 directly followed by each argument.
1839 If no arguments are provided, a hyphen is printed followed by a space.
1840 If the argument is a macro, a hyphen is prefixed to the subsequent macro
1841 output.
1842 .Pp
1843 Examples:
1844 .Dl \&.Fl a b c
1845 .Dl \&.Fl \&Pf a b
1846 .Dl \&.Fl
1847 .Dl \&.Op \&Fl o \&Ns \&Ar file
1848 .Pp
1849 See also
1850 .Sx \&Cm .
1851 .Ss \&Fn
1852 A function name.
1853 Its syntax is as follows:
1854 .Bd -ragged -offset indent
1855 .Pf \. Ns Sx \&Fn
1856 .Op Cm functype
1857 .Cm funcname
1858 .Op Oo Cm argtype Oc Cm argname
1859 .Ed
1860 .Pp
1861 Function arguments are surrounded in parenthesis and
1862 are delimited by commas.
1863 If no arguments are specified, blank parenthesis are output.
1864 .Pp
1865 Examples:
1866 .Dl \&.Fn "int funcname" "int arg0" "int arg1"
1867 .Dl \&.Fn funcname "int arg0"
1868 .Dl \&.Fn funcname arg0
1869 .Bd -literal -offset indent -compact
1870 \&.Ft functype
1871 \&.Fn funcname
1872 .Ed
1873 .Pp
1874 When referring to a function documented in another manual page, use
1875 .Sx \&Xr
1876 instead.
1877 See also
1878 .Sx MANUAL STRUCTURE
1879 and
1880 .Sx \&Ft .
1881 .Ss \&Fo
1882 Begin a function block.
1883 This is a multi-line version of
1884 .Sx \&Fn .
1885 Its syntax is as follows:
1886 .Pp
1887 .D1 Pf \. Sx \&Fo Cm funcname
1888 .Pp
1889 Invocations usually occur in the following context:
1890 .Bd -ragged -offset indent
1891 .Pf \. Sx \&Ft Cm functype
1892 .br
1893 .Pf \. Sx \&Fo Cm funcname
1894 .br
1895 .Pf \. Sx \&Fa Oo Cm argtype Oc Cm argname
1896 .br
1897 \.\.\.
1898 .br
1899 .Pf \. Sx \&Fc
1900 .Ed
1901 .Pp
1902 A
1903 .Sx \&Fo
1904 scope is closed by
1905 .Pp
1906 See also
1907 .Sx MANUAL STRUCTURE ,
1908 .Sx \&Fa ,
1909 .Sx \&Fc ,
1910 and
1911 .Sx \&Ft .
1912 .Ss \&Ft
1913 A function type.
1914 Its syntax is as follows:
1915 .Pp
1916 .D1 Pf \. Sx \&Ft Cm functype
1917 .Pp
1918 Examples:
1919 .Dl \&.Ft int
1920 .Bd -literal -offset indent -compact
1921 \&.Ft functype
1922 \&.Fn funcname
1923 .Ed
1924 .Pp
1925 See also
1926 .Sx MANUAL STRUCTURE ,
1927 .Sx \&Fn ,
1928 and
1929 .Sx \&Fo .
1930 .Ss \&Fx
1931 Format the
1932 .Fx
1933 version provided as an argument, or a default value
1934 if no argument is provided.
1935 .Pp
1936 Examples:
1937 .Dl \&.Fx 7.1
1938 .Dl \&.Fx
1939 .Pp
1940 See also
1941 .Sx \&At ,
1942 .Sx \&Bsx ,
1943 .Sx \&Bx ,
1944 .Sx \&Dx ,
1945 .Sx \&Nx ,
1946 .Sx \&Ox ,
1947 and
1948 .Sx \&Ux .
1949 .Ss \&Hf
1950 This macro is obsolete and not implemented.
1951 .Ss \&Ic
1952 Designate an internal or interactive command.
1953 This is similar to
1954 .Sx \&Cm
1955 but used for instructions rather than values.
1956 .Pp
1957 Examples:
1958 .Dl \&.Ic hash
1959 .Dl \&.Ic alias
1960 .Pp
1961 Note that using
1962 .Sx \&Bd Fl literal
1963 or
1964 .Sx \&D1
1965 is preferred for displaying code; the
1966 .Sx \&Ic
1967 macro is used when referring to specific instructions.
1968 .Ss \&In
1969 An
1970 .Dq include
1971 file.
1972 In the
1973 .Em SYNOPSIS
1974 section (only if invoked as the line macro), the first argument is
1975 preceded by
1976 .Dq #include ,
1977 the arguments is enclosed in angle brackets.
1978 .Pp
1979 Examples:
1980 .Dl \&.In sys/types
1981 .Pp
1982 See also
1983 .Sx MANUAL STRUCTURE .
1984 .Ss \&It
1985 A list item.
1986 The syntax of this macro depends on the list type.
1987 .Pp
1988 Lists
1989 of type
1990 .Fl hang ,
1991 .Fl ohang ,
1992 .Fl inset ,
1993 and
1994 .Fl diag
1995 have the following syntax:
1996 .Pp
1997 .D1 Pf \. Sx \&It Cm args
1998 .Pp
1999 Lists of type
2000 .Fl bullet ,
2001 .Fl dash ,
2002 .Fl enum ,
2003 .Fl hyphen
2004 and
2005 .Fl item
2006 have the following syntax:
2007 .Pp
2008 .D1 Pf \. Sx \&It
2009 .Pp
2010 with subsequent lines interpreted within the scope of the
2011 .Sx \&It
2012 until either a closing
2013 .Sx \&El
2014 or another
2015 .Sx \&It .
2016 .Pp
2017 The
2018 .Fl tag
2019 list has the following syntax:
2020 .Pp
2021 .D1 Pf \. Sx \&It Op Cm args
2022 .Pp
2023 Subsequent lines are interpreted as with
2024 .Fl bullet
2025 and family.
2026 The line arguments correspond to the list's left-hand side; body
2027 arguments correspond to the list's contents.
2028 .Pp
2029 The
2030 .Fl column
2031 list is the most complicated.
2032 Its syntax is as follows:
2033 .Pp
2034 .D1 Pf \. Sx \&It Op Cm args
2035 .Pp
2036 The
2037 .Cm args
2038 are phrases, a mix of macros and text corresponding to a line column,
2039 delimited by tabs or the special
2040 .Sq \&Ta
2041 pseudo-macro.
2042 Lines subsequent the
2043 .Sx \&It
2044 are interpreted within the scope of the last phrase.
2045 Calling the pseudo-macro
2046 .Sq \&Ta
2047 will open a new phrase scope (this must occur on a macro line to be
2048 interpreted as a macro).
2049 Note that the tab phrase delimiter may only be used within the
2050 .Sx \&It
2051 line itself.
2052 Subsequent this, only the
2053 .Sq \&Ta
2054 pseudo-macro may be used to delimit phrases.
2055 Furthermore, note that quoted sections propagate over tab-delimited
2056 phrases on an
2057 .Sx \&It ,
2058 for example,
2059 .Pp
2060 .Dl .It \(dqcol1 ; <TAB> col2 ;\(dq \&;
2061 .Pp
2062 will preserve the semicolon whitespace except for the last.
2063 .Pp
2064 See also
2065 .Sx \&Bl .
2066 .Ss \&Lb
2067 Specify a library.
2068 The syntax is as follows:
2069 .Pp
2070 .D1 Pf \. Sx \&Lb Cm library
2071 .Pp
2072 The
2073 .Cm library
2074 parameter may be a system library, such as
2075 .Cm libz
2076 or
2077 .Cm libpam ,
2078 in which case a small library description is printed next to the linker
2079 invocation; or a custom library, in which case the library name is
2080 printed in quotes.
2081 This is most commonly used in the
2082 .Em SYNOPSIS
2083 section as described in
2084 .Sx MANUAL STRUCTURE .
2085 .Pp
2086 Examples:
2087 .Dl \&.Lb libz
2088 .Dl \&.Lb mdoc
2089 .Ss \&Li
2090 Denotes text that should be in a literal font mode.
2091 Note that this is a presentation term and should not be used for
2092 stylistically decorating technical terms.
2093 .Pp
2094 See also
2095 .Sx \&Bf ,
2096 .Sx \&Sy ,
2097 and
2098 .Sx \&Em .
2099 .Ss \&Lk
2100 Format a hyperlink.
2101 Its syntax is as follows:
2102 .Pp
2103 .D1 Pf \. Sx \&Lk Cm uri Op Cm name
2104 .Pp
2105 Examples:
2106 .Dl \&.Lk http://bsd.lv \*qThe BSD.lv Project\*q
2107 .Dl \&.Lk http://bsd.lv
2108 .Pp
2109 See also
2110 .Sx \&Mt .
2111 .Ss \&Lp
2112 Synonym for
2113 .Sx \&Pp .
2114 .Ss \&Ms
2115 Display a mathematical symbol.
2116 Its syntax is as follows:
2117 .Pp
2118 .D1 Pf \. Sx \&Ms Cm symbol
2119 .Pp
2120 Examples:
2121 .Dl \&.Ms sigma
2122 .Dl \&.Ms aleph
2123 .Ss \&Mt
2124 Format a
2125 .Dq mailto:
2126 hyperlink.
2127 Its syntax is as follows:
2128 .Pp
2129 .D1 Pf \. Sx \&Mt Cm address
2130 .Pp
2131 Examples:
2132 .Dl \&.Mt discuss@manpages.bsd.lv
2133 .Ss \&Nd
2134 A one line description of the manual's content.
2135 This may only be invoked in the
2136 .Em SYNOPSIS
2137 section subsequent the
2138 .Sx \&Nm
2139 macro.
2140 .Pp
2141 Examples:
2142 .Dl \&.Sx \&Nd mdoc language reference
2143 .Dl \&.Sx \&Nd format and display UNIX manuals
2144 .Pp
2145 The
2146 .Sx \&Nd
2147 macro technically accepts child macros and terminates with a subsequent
2148 .Sx \&Sh
2149 invocation.
2150 Do not assume this behaviour: some
2151 .Xr whatis 1
2152 database generators are not smart enough to parse more than the line
2153 arguments and will display macros verbatim.
2154 .Pp
2155 See also
2156 .Sx \&Nm .
2157 .Ss \&Nm
2158 The name of the manual page, or \(em in particular in section 1, 6,
2159 and 8 pages \(em of an additional command or feature documented in
2160 the manual page.
2161 When first invoked, the
2162 .Sx \&Nm
2163 macro expects a single argument, the name of the manual page.
2164 Usually, the first invocation happens in the
2165 .Em NAME
2166 section of the page.
2167 The specified name will be remembered and used whenever the macro is
2168 called again without arguments later in the page.
2169 The
2170 .Sx \&Nm
2171 macro uses
2172 .Sx Block full-implicit
2173 semantics when invoked as the first macro on an input line in the
2174 .Em SYNOPSIS
2175 section; otherwise, it uses ordinary
2176 .Sx In-line
2177 semantics.
2178 .Pp
2179 Examples:
2180 .Bd -literal -offset indent
2181 \&.Sh SYNOPSIS
2182 \&.Nm cat
2183 \&.Op Fl benstuv
2184 \&.Op Ar
2185 .Ed
2186 .Pp
2187 In the
2188 .Em SYNOPSIS
2189 of section 2, 3 and 9 manual pages, use the
2190 .Sx \&Fn
2191 macro rather than
2192 .Sx \&Nm
2193 to mark up the name of the manual page.
2194 .Ss \&No
2195 A
2196 .Dq noop
2197 macro used to terminate prior macro contexts.
2198 .Pp
2199 Examples:
2200 .Dl \&.Sx \&Fl ab \&No cd \&Fl ef
2201 .Ss \&Ns
2202 Suppress a space.
2203 Following invocation, text is interpreted as free-form text until a
2204 macro is encountered.
2205 .Pp
2206 Examples:
2207 .Dl \&.Fl o \&Ns \&Ar output
2208 .Pp
2209 See also
2210 .Sx \&No
2211 and
2212 .Sx \&Sm .
2213 .Ss \&Nx
2214 Format the
2215 .Nx
2216 version provided as an argument, or a default value if
2217 no argument is provided.
2218 .Pp
2219 Examples:
2220 .Dl \&.Nx 5.01
2221 .Dl \&.Nx
2222 .Pp
2223 See also
2224 .Sx \&At ,
2225 .Sx \&Bsx ,
2226 .Sx \&Bx ,
2227 .Sx \&Dx ,
2228 .Sx \&Fx ,
2229 .Sx \&Ox ,
2230 and
2231 .Sx \&Ux .
2232 .Ss \&Oc
2233 Close multi-line
2234 .Sx \&Oo
2235 context.
2236 .Ss \&Oo
2237 Multi-line version of
2238 .Sx \&Op .
2239 .Pp
2240 Examples:
2241 .Bd -literal -offset indent -compact
2242 \&.Oo
2243 \&.Op Fl flag Ns Ar value
2244 \&.Oc
2245 .Ed
2246 .Ss \&Op
2247 Command-line option.
2248 Used when listing options to command-line utilities.
2249 Prints the argument(s) in brackets.
2250 .Pp
2251 Examples:
2252 .Dl \&.Op \&Fl a \&Ar b
2253 .Dl \&.Op \&Ar a | b
2254 .Pp
2255 See also
2256 .Sx \&Oo .
2257 .Ss \&Os
2258 Document operating system version.
2259 This is the mandatory third macro of
2260 any
2261 .Nm
2262 file.
2263 Its syntax is as follows:
2264 .Pp
2265 .D1 Pf \. Sx \&Os Op Cm system Op Cm version
2266 .Pp
2267 The optional
2268 .Cm system
2269 parameter specifies the relevant operating system or environment.
2270 Left unspecified, it defaults to the local operating system version.
2271 This is the suggested form.
2272 .Pp
2273 Examples:
2274 .Dl \&.Os
2275 .Dl \&.Os KTH/CSC/TCS
2276 .Dl \&.Os BSD 4.3
2277 .Pp
2278 See also
2279 .Sx \&Dd
2280 and
2281 .Sx \&Dt .
2282 .Ss \&Ot
2283 Unknown usage.
2284 .Pp
2285 .Em Remarks :
2286 this macro has been deprecated.
2287 .Ss \&Ox
2288 Format the
2289 .Ox
2290 version provided as an argument, or a default value
2291 if no argument is provided.
2292 .Pp
2293 Examples:
2294 .Dl \&.Ox 4.5
2295 .Dl \&.Ox
2296 .Pp
2297 See also
2298 .Sx \&At ,
2299 .Sx \&Bsx ,
2300 .Sx \&Bx ,
2301 .Sx \&Dx ,
2302 .Sx \&Fx ,
2303 .Sx \&Nx ,
2304 and
2305 .Sx \&Ux .
2306 .Ss \&Pa
2307 A file-system path.
2308 If an argument is not provided, the string
2309 .Dq \(ti
2310 is used as a default.
2311 .Pp
2312 Examples:
2313 .Dl \&.Pa /usr/bin/mandoc
2314 .Dl \&.Pa /usr/share/man/man7/mdoc.7
2315 .Pp
2316 See also
2317 .Sx \&Lk .
2318 .Ss \&Pc
2319 Close parenthesised context opened by
2320 .Sx \&Po .
2321 .Ss \&Pf
2322 Removes the space
2323 .Pq Dq prefix
2324 between its arguments.
2325 Its syntax is as follows:
2326 .Pp
2327 .D1 Pf \. \&Pf Cm prefix suffix
2328 .Pp
2329 The
2330 .Cm suffix
2331 argument may be a macro.
2332 .Pp
2333 Examples:
2334 .Dl \&.Pf \e. \&Sx \&Pf \&Cm prefix suffix
2335 .Ss \&Po
2336 Multi-line version of
2337 .Sx \&Pq .
2338 .Ss \&Pp
2339 Break a paragraph.
2340 This will assert vertical space between prior and subsequent macros
2341 and/or text.
2342 .Ss \&Pq
2343 Parenthesised enclosure.
2344 .Pp
2345 See also
2346 .Sx \&Po .
2347 .Ss \&Qc
2348 Close quoted context opened by
2349 .Sx \&Qo .
2350 .Ss \&Ql
2351 Format a single-quoted literal.
2352 See also
2353 .Sx \&Qq
2354 and
2355 .Sx \&Sq .
2356 .Ss \&Qo
2357 Multi-line version of
2358 .Sx \&Qq .
2359 .Ss \&Qq
2360 Encloses its arguments in
2361 .Dq typewriter
2362 double-quotes.
2363 Consider using
2364 .Sx \&Dq .
2365 .Pp
2366 See also
2367 .Sx \&Dq ,
2368 .Sx \&Sq ,
2369 and
2370 .Sx \&Qo .
2371 .Ss \&Re
2372 Close an
2373 .Sx \&Rs
2374 block.
2375 Does not have any tail arguments.
2376 .Ss \&Rs
2377 Begin a bibliographic
2378 .Pq Dq reference
2379 block.
2380 Does not have any head arguments.
2381 The block macro may only contain
2382 .Sx \&%A ,
2383 .Sx \&%B ,
2384 .Sx \&%C ,
2385 .Sx \&%D ,
2386 .Sx \&%I ,
2387 .Sx \&%J ,
2388 .Sx \&%N ,
2389 .Sx \&%O ,
2390 .Sx \&%P ,
2391 .Sx \&%Q ,
2392 .Sx \&%R ,
2393 .Sx \&%T ,
2394 .Sx \&%U ,
2395 and
2396 .Sx \&%V
2397 child macros (at least one must be specified).
2398 .Pp
2399 Examples:
2400 .Bd -literal -offset indent -compact
2401 \&.Rs
2402 \&.%A J. E. Hopcroft
2403 \&.%A J. D. Ullman
2404 \&.%B Introduction to Automata Theory, Languages, and Computation
2405 \&.%I Addison-Wesley
2406 \&.%C Reading, Massachusettes
2407 \&.%D 1979
2408 \&.Re
2409 .Ed
2410 .Pp
2411 If an
2412 .Sx \&Rs
2413 block is used within a SEE ALSO section, a vertical space is asserted
2414 before the rendered output, else the block continues on the current
2415 line.
2416 .Ss \&Rv
2417 Inserts text regarding a function call's return value.
2418 This macro must consist of the
2419 .Fl std
2420 argument followed by an optional
2421 .Ar function .
2422 If
2423 .Ar function
2424 is not provided, the document's name as stipulated by the first
2425 .Sx \&Nm
2426 is provided.
2427 .Pp
2428 See also
2429 .Sx \&Ex .
2430 .Ss \&Sc
2431 Close single-quoted context opened by
2432 .Sx \&So .
2433 .Ss \&Sh
2434 Begin a new section.
2435 For a list of conventional manual sections, see
2436 .Sx MANUAL STRUCTURE .
2437 These sections should be used unless it's absolutely necessary that
2438 custom sections be used.
2439 .Pp
2440 Section names should be unique so that they may be keyed by
2441 .Sx \&Sx .
2442 .Pp
2443 See also
2444 .Sx \&Pp ,
2445 .Sx \&Ss ,
2446 and
2447 .Sx \&Sx .
2448 .Ss \&Sm
2449 Switches the spacing mode for output generated from macros.
2450 Its syntax is as follows:
2451 .Pp
2452 .D1 Pf \. Sx \&Sm Cm on | off
2453 .Pp
2454 By default, spacing is
2455 .Cm on .
2456 When switched
2457 .Cm off ,
2458 no white space is inserted between macro arguments and between the
2459 output generated from adjacent macros, but free-form text lines
2460 still get normal spacing between words and sentences.
2461 .Ss \&So
2462 Multi-line version of
2463 .Sx \&Sq .
2464 .Ss \&Sq
2465 Encloses its arguments in
2466 .Dq typewriter
2467 single-quotes.
2468 .Pp
2469 See also
2470 .Sx \&Dq ,
2471 .Sx \&Qq ,
2472 and
2473 .Sx \&So .
2474 .Ss \&Ss
2475 Begin a new sub-section.
2476 Unlike with
2477 .Sx \&Sh ,
2478 there's no convention for sub-sections.
2479 Conventional sections, as described in
2480 .Sx MANUAL STRUCTURE ,
2481 rarely have sub-sections.
2482 .Pp
2483 Sub-section names should be unique so that they may be keyed by
2484 .Sx \&Sx .
2485 .Pp
2486 See also
2487 .Sx \&Pp ,
2488 .Sx \&Sh ,
2489 and
2490 .Sx \&Sx .
2491 .Ss \&St
2492 Replace an abbreviation for a standard with the full form.
2493 The following standards are recognised:
2494 .Pp
2495 .Bl -tag -width "-p1003.1g-2000X" -compact
2496 .It \-p1003.1-88
2497 .St -p1003.1-88
2498 .It \-p1003.1-90
2499 .St -p1003.1-90
2500 .It \-p1003.1-96
2501 .St -p1003.1-96
2502 .It \-p1003.1-2001
2503 .St -p1003.1-2001
2504 .It \-p1003.1-2004
2505 .St -p1003.1-2004
2506 .It \-p1003.1-2008
2507 .St -p1003.1-2008
2508 .It \-p1003.1
2509 .St -p1003.1
2510 .It \-p1003.1b
2511 .St -p1003.1b
2512 .It \-p1003.1b-93
2513 .St -p1003.1b-93
2514 .It \-p1003.1c-95
2515 .St -p1003.1c-95
2516 .It \-p1003.1g-2000
2517 .St -p1003.1g-2000
2518 .It \-p1003.1i-95
2519 .St -p1003.1i-95
2520 .It \-p1003.2-92
2521 .St -p1003.2-92
2522 .It \-p1003.2a-92
2523 .St -p1003.2a-92
2524 .It \-p1387.2-95
2525 .St -p1387.2-95
2526 .It \-p1003.2
2527 .St -p1003.2
2528 .It \-p1387.2
2529 .St -p1387.2
2530 .It \-isoC
2531 .St -isoC
2532 .It \-isoC-90
2533 .St -isoC-90
2534 .It \-isoC-amd1
2535 .St -isoC-amd1
2536 .It \-isoC-tcor1
2537 .St -isoC-tcor1
2538 .It \-isoC-tcor2
2539 .St -isoC-tcor2
2540 .It \-isoC-99
2541 .St -isoC-99
2542 .It \-iso9945-1-90
2543 .St -iso9945-1-90
2544 .It \-iso9945-1-96
2545 .St -iso9945-1-96
2546 .It \-iso9945-2-93
2547 .St -iso9945-2-93
2548 .It \-ansiC
2549 .St -ansiC
2550 .It \-ansiC-89
2551 .St -ansiC-89
2552 .It \-ansiC-99
2553 .St -ansiC-99
2554 .It \-ieee754
2555 .St -ieee754
2556 .It \-iso8802-3
2557 .St -iso8802-3
2558 .It \-ieee1275-94
2559 .St -ieee1275-94
2560 .It \-xpg3
2561 .St -xpg3
2562 .It \-xpg4
2563 .St -xpg4
2564 .It \-xpg4.2
2565 .St -xpg4.2
2566 .St -xpg4.3
2567 .It \-xbd5
2568 .St -xbd5
2569 .It \-xcu5
2570 .St -xcu5
2571 .It \-xsh5
2572 .St -xsh5
2573 .It \-xns5
2574 .St -xns5
2575 .It \-xns5.2
2576 .St -xns5.2
2577 .It \-xns5.2d2.0
2578 .St -xns5.2d2.0
2579 .It \-xcurses4.2
2580 .St -xcurses4.2
2581 .It \-susv2
2582 .St -susv2
2583 .It \-susv3
2584 .St -susv3
2585 .It \-svid4
2586 .St -svid4
2587 .El
2588 .Ss \&Sx
2589 Reference a section or sub-section.
2590 The referenced section or sub-section name must be identical to the
2591 enclosed argument, including whitespace.
2592 .Pp
2593 Examples:
2594 .Dl \&.Sx MANUAL STRUCTURE
2595 .Pp
2596 See also
2597 .Sx \&Sh
2598 and
2599 .Sx \&Ss .
2600 .Ss \&Sy
2601 Format enclosed arguments in symbolic
2602 .Pq Dq boldface .
2603 Note that this is a presentation term and should not be used for
2604 stylistically decorating technical terms.
2605 .Pp
2606 See also
2607 .Sx \&Bf ,
2608 .Sx \&Li ,
2609 and
2610 .Sx \&Em .
2611 .Ss \&Tn
2612 Format a tradename.
2613 .Pp
2614 Examples:
2615 .Dl \&.Tn IBM
2616 .Ss \&Ud
2617 Prints out
2618 .Dq currently under development .
2619 .Ss \&Ux
2620 Format the UNIX name.
2621 Accepts no argument.
2622 .Pp
2623 Examples:
2624 .Dl \&.Ux
2625 .Pp
2626 See also
2627 .Sx \&At ,
2628 .Sx \&Bsx ,
2629 .Sx \&Bx ,
2630 .Sx \&Dx ,
2631 .Sx \&Fx ,
2632 .Sx \&Nx ,
2633 and
2634 .Sx \&Ox .
2635 .Ss \&Va
2636 A variable name.
2637 .Pp
2638 Examples:
2639 .Dl \&.Va foo
2640 .Dl \&.Va const char *bar ;
2641 .Ss \&Vt
2642 A variable type.
2643 This is also used for indicating global variables in the
2644 .Em SYNOPSIS
2645 section, in which case a variable name is also specified.
2646 Note that it accepts
2647 .Sx Block partial-implicit
2648 syntax when invoked as the first macro in the
2649 .Em SYNOPSIS
2650 section, else it accepts ordinary
2651 .Sx In-line
2652 syntax.
2653 .Pp
2654 Note that this should not be confused with
2655 .Sx \&Ft ,
2656 which is used for function return types.
2657 .Pp
2658 Examples:
2659 .Dl \&.Vt unsigned char
2660 .Dl \&.Vt extern const char * const sys_signame[] \&;
2661 .Pp
2662 See also
2663 .Sx MANUAL STRUCTURE
2664 and
2665 .Sx \&Va .
2666 .Ss \&Xc
2667 Close a scope opened by
2668 .Sx \&Xo .
2669 .Ss \&Xo
2670 Extend the header of an
2671 .Sx \&It
2672 macro or the body of a partial-implicit block macro
2673 beyond the end of the input line.
2674 This macro originally existed to work around the 9-argument limit
2675 of historic
2676 .Xr roff 7 .
2677 .Ss \&Xr
2678 Link to another manual
2679 .Pq Qq cross-reference .
2680 Its syntax is as follows:
2681 .Pp
2682 .D1 Pf \. Sx \&Xr Cm name section
2683 .Pp
2684 The
2685 .Cm name
2686 and
2687 .Cm section
2688 are the name and section of the linked manual.
2689 If
2690 .Cm section
2691 is followed by non-punctuation, an
2692 .Sx \&Ns
2693 is inserted into the token stream.
2694 This behaviour is for compatibility with
2695 GNU troff.
2696 .Pp
2697 Examples:
2698 .Dl \&.Xr mandoc 1
2699 .Dl \&.Xr mandoc 1 \&;
2700 .Dl \&.Xr mandoc 1 \&Ns s behaviour
2701 .Ss \&br
2702 Emits a line-break.
2703 This macro should not be used; it is implemented for compatibility with
2704 historical manuals.
2705 .Pp
2706 Consider using
2707 .Sx \&Pp
2708 in the event of natural paragraph breaks.
2709 .Ss \&sp
2710 Emits vertical space.
2711 This macro should not be used; it is implemented for compatibility with
2712 historical manuals.
2713 Its syntax is as follows:
2714 .Pp
2715 .D1 Pf \. Sx \&sp Op Cm height
2716 .Pp
2717 The
2718 .Cm height
2719 argument must be formatted as described in
2720 .Sx Scaling Widths .
2721 If unspecified,
2722 .Sx \&sp
2723 asserts a single vertical space.
2724 .Sh COMPATIBILITY
2725 This section documents compatibility between mandoc and other other
2726 troff implementations, at this time limited to GNU troff
2727 .Pq Qq groff .
2728 The term
2729 .Qq historic groff
2730 refers to groff versions before 1.17,
2731 which featured a significant update of the
2732 .Pa doc.tmac
2733 file.
2734 .Pp
2735 Heirloom troff, the other significant troff implementation accepting
2736 \-mdoc, is similar to historic groff.
2737 .Pp
2738 The following problematic behaviour is found in groff:
2739 .ds hist (Historic groff only.)
2740 .Pp
2741 .Bl -dash -compact
2742 .It
2743 Display macros
2744 .Po
2745 .Sx \&Bd ,
2746 .Sx \&Dl ,
2747 and
2748 .Sx \&D1
2749 .Pc
2750 may not be nested.
2751 \*[hist]
2752 .It
2753 .Sx \&At
2754 with unknown arguments produces no output at all.
2755 \*[hist]
2756 Newer groff and mandoc print
2757 .Qq AT&T UNIX
2758 and the arguments.
2759 .It
2760 .Sx \&Bd Fl column
2761 does not recognize trailing punctuation characters when they immediately
2762 precede tabulator characters, but treats them as normal text and
2763 outputs a space before them.
2764 .It
2765 .Sx \&Bd Fl ragged compact
2766 does not start a new line.
2767 \*[hist]
2768 .It
2769 .Sx \&Dd
2770 without an argument prints
2771 .Dq Epoch .
2772 In mandoc, it resolves to the current date.
2773 .It
2774 .Sx \&Fl
2775 does not print a dash for an empty argument.
2776 \*[hist]
2777 .It
2778 .Sx \&Fn
2779 does not start a new line unless invoked as the line macro in the
2780 .Em SYNOPSIS
2781 section.
2782 \*[hist]
2783 .It
2784 .Sx \&Fo
2785 with
2786 .Pf non- Sx \&Fa
2787 children causes inconsistent spacing between arguments.
2788 In mandoc, a single space is always inserted between arguments.
2789 .It
2790 .Sx \&Ft
2791 in the
2792 .Em SYNOPSIS
2793 causes inconsistent vertical spacing, depending on whether a prior
2794 .Sx \&Fn
2795 has been invoked.
2796 See
2797 .Sx \&Ft
2798 and
2799 .Sx \&Fn
2800 for the normalised behaviour in mandoc.
2801 .It
2802 .Sx \&In
2803 ignores additional arguments and is not treated specially in the
2804 .Em SYNOPSIS .
2805 \*[hist]
2806 .It
2807 .Sx \&It
2808 sometimes requires a
2809 .Fl nested
2810 flag.
2811 \*[hist]
2812 In new groff and mandoc, any list may be nested by default and
2813 .Fl enum
2814 lists will restart the sequence only for the sub-list.
2815 .It
2816 .Sx \&Li
2817 followed by a reserved character is incorrectly used in some manuals
2818 instead of properly quoting that character, which sometimes works with
2819 historic groff.
2820 .It
2821 .Sx \&Lk
2822 only accepts a single link-name argument; the remainder is misformatted.
2823 .It
2824 .Sx \&Pa
2825 does not format its arguments when used in the FILES section under
2826 certain list types.
2827 .It
2828 .Sx \&Ta
2829 can only be called by other macros, but not at the beginning of a line.
2830 .It
2831 .Sx \&%C
2832 is not implemented.
2833 .It
2834 Historic groff only allows up to eight or nine arguments per macro input
2835 line, depending on the exact situation.
2836 Providing more arguments causes garbled output.
2837 The number of arguments on one input line is not limited with mandoc.
2838 .It
2839 Historic groff has many un-callable macros.
2840 Most of these (excluding some block-level macros) are callable
2841 in new groff and mandoc.
2842 .It
2843 .Sq \(ba
2844 (vertical bar) is not fully supported as a delimiter.
2845 \*[hist]
2846 .It
2847 .Sq \ef
2848 .Pq font face
2849 and
2850 .Sq \ef
2851 .Pq font family face
2852 .Sx Text Decoration
2853 escapes behave irregularly when specified within line-macro scopes.
2854 .It
2855 Negative scaling units return to prior lines.
2856 Instead, mandoc truncates them to zero.
2857 .El
2858 .Pp
2859 The following features are unimplemented in mandoc:
2860 .Pp
2861 .Bl -dash -compact
2862 .It
2863 .Sx \&Bd
2864 .Fl file Ar file .
2865 .It
2866 .Sx \&Bd
2867 .Fl offset Ar center
2868 and
2869 .Fl offset Ar right .
2870 Groff does not implement centered and flush-right rendering either,
2871 but produces large indentations.
2872 .It
2873 The
2874 .Sq \eh
2875 .Pq horizontal position ,
2876 .Sq \ev
2877 .Pq vertical position ,
2878 .Sq \em
2879 .Pq text colour ,
2880 .Sq \eM
2881 .Pq text filling colour ,
2882 .Sq \ez
2883 .Pq zero-length character ,
2884 .Sq \ew
2885 .Pq string length ,
2886 .Sq \ek
2887 .Pq horizontal position marker ,
2888 .Sq \eo
2889 .Pq text overstrike ,
2890 and
2891 .Sq \es
2892 .Pq text size
2893 escape sequences are all discarded in mandoc.
2894 .It
2895 The
2896 .Sq \ef
2897 scaling unit is accepted by mandoc, but rendered as the default unit.
2898 .It
2899 In quoted literals, groff allows pairwise double-quotes to produce a
2900 standalone double-quote in formatted output.
2901 This is not supported by mandoc.
2902 .El
2903 .Sh SEE ALSO
2904 .Xr man 1 ,
2905 .Xr mandoc 1 ,
2906 .Xr man 7 ,
2907 .Xr mandoc_char 7
2908 .Xr roff 7 ,
2909 .Xr tbl 7
2910 .Sh HISTORY
2911 The
2912 .Nm
2913 language first appeared as a troff macro package in
2914 .Bx 4.4 .
2915 It was later significantly updated by Werner Lemberg and Ruslan Ermilov
2916 in groff-1.17.
2917 The standalone implementation that is part of the
2918 .Xr mandoc 1
2919 utility written by Kristaps Dzonsons appeared in
2920 .Ox 4.6 .
2921 .Sh AUTHORS
2922 The
2923 .Nm
2924 reference was written by
2925 .An Kristaps Dzonsons Aq kristaps@bsd.lv .