6356 Update mdocml to 1.13.3
[unleashed.git] / usr / src / man / man1 / mandoc.1
blobc60353d2e0de9054ae22fbdc903e8d5d07679360
1 .\"     $Id: mandoc.1,v 1.155 2015/02/23 13:31:03 schwarze Exp $
2 .\"
3 .\" Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
4 .\" Copyright (c) 2012, 2014, 2015 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: February 23 2015 $
19 .Dt MANDOC 1
20 .Os
21 .Sh NAME
22 .Nm mandoc
23 .Nd format and display UNIX manuals
24 .Sh SYNOPSIS
25 .Nm mandoc
26 .Op Fl acfhkl
27 .Sm off
28 .Op Fl I Cm os Li = Ar name
29 .Sm on
30 .Op Fl K Ns Ar encoding
31 .Op Fl m Ns Ar format
32 .Op Fl O Ns Ar option
33 .Op Fl T Ns Ar output
34 .Op Fl W Ns Ar level
35 .Op Ar
36 .Sh DESCRIPTION
37 The
38 .Nm
39 utility formats
40 .Ux
41 manual pages for display.
42 .Pp
43 By default,
44 .Nm
45 reads
46 .Xr mdoc 5
48 .Xr man 5
49 text from stdin, implying
50 .Fl m Ns Cm andoc ,
51 and produces
52 .Fl T Ns Cm locale
53 output.
54 .Pp
55 The options are as follows:
56 .Bl -tag -width Ds
57 .It Fl a
58 If the standard output is a terminal device and
59 .Fl c
60 is not specified, use
61 .Xr more 1
62 to paginate the output, just like
63 .Xr man 1
64 would.
65 .It Fl c
66 Copy the formatted manual pages to the standard output without using
67 .Xr more 1
68 to paginate them.
69 This is the default.
70 It can be specified to override
71 .Fl a .
72 .It Fl f
73 A synonym for
74 .Xr whatis 1 .
75 This overrides any earlier
76 .Fl k
77 and
78 .Fl l
79 options.
80 .Sm off
81 .It Fl I Cm os Li = Ar name
82 .Sm on
83 Override the default operating system
84 .Ar name
85 for the
86 .Xr mdoc 5
87 .Sq \&Os
88 and for the
89 .Xr man 5
90 .Sq \&TH
91 macro.
92 .It Fl h
93 Display only the SYNOPSIS lines.
94 Implies
95 .Fl c .
96 .It Fl K Ns Ar encoding
97 Specify the input encoding.
98 The supported
99 .Ar encoding
100 arguments are
101 .Cm us-ascii ,
102 .Cm iso-8859-1 ,
104 .Cm utf-8 .
105 If not specified, autodetection uses the first match:
106 .Bl -tag -width iso-8859-1
107 .It Cm utf-8
108 if the first three bytes of the input file
109 are the UTF-8 byte order mark (BOM, 0xefbbbf)
110 .It Ar encoding
111 if the first or second line of the input file matches the
112 .Sy emacs
113 mode line format
115 .D1 .\e" -*- Oo ...; Oc coding: Ar encoding ; No -*-
116 .It Cm utf-8
117 if the first non-ASCII byte in the file introduces a valid UTF-8 sequence
118 .It Cm iso-8859-1
119 otherwise
121 .It Fl l
122 A synonym for
123 .Fl a .
124 .It Fl m Ns Ar format
125 Input format.
127 .Sx Input Formats
128 for available formats.
129 Defaults to
130 .Fl m Ns Cm andoc .
131 .It Fl O Ns Ar option
132 Comma-separated output options.
133 .It Fl T Ns Ar output
134 Output format.
136 .Sx Output Formats
137 for available formats.
138 Defaults to
139 .Fl T Ns Cm locale .
140 .It Fl W Ns Ar level
141 Specify the minimum message
142 .Ar level
143 to be reported on the standard error output and to affect the exit status.
145 .Ar level
146 can be
147 .Cm warning ,
148 .Cm error ,
150 .Cm unsupp ;
151 .Cm all
152 is an alias for
153 .Cm warning .
154 By default,
156 is silent.
158 .Sx EXIT STATUS
160 .Sx DIAGNOSTICS
161 for details.
163 The special option
164 .Fl W Ns Cm stop
165 tells
167 to exit after parsing a file that causes warnings or errors of at least
168 the requested level.
169 No formatted output will be produced from that file.
170 If both a
171 .Ar level
173 .Cm stop
174 are requested, they can be joined with a comma, for example
175 .Fl W Ns Cm error , Ns Cm stop .
176 .It Ar file
177 Read input from zero or more files.
178 If unspecified, reads from stdin.
179 If multiple files are specified,
181 will halt with the first failed parse.
183 .Ss Input Formats
186 utility accepts
187 .Xr mdoc 5
189 .Xr man 5
190 input with
191 .Fl m Ns Cm doc
193 .Fl m Ns Cm an ,
194 respectively.
196 .Xr mdoc 5
197 format is
198 .Em strongly
199 recommended;
200 .Xr man 5
201 should only be used for legacy manuals.
203 A third option,
204 .Fl m Ns Cm andoc ,
205 which is also the default, determines encoding on-the-fly: if the first
206 non-comment macro is
207 .Sq \&Dd
209 .Sq \&Dt ,
211 .Xr mdoc 5
212 parser is used; otherwise, the
213 .Xr man 5
214 parser is used.
216 If multiple
217 files are specified with
218 .Fl m Ns Cm andoc ,
219 each has its file-type determined this way.
220 If multiple files are
221 specified and
222 .Fl m Ns Cm doc
224 .Fl m Ns Cm an
225 is specified, then this format is used exclusively.
226 .Ss Output Formats
229 utility accepts the following
230 .Fl T
231 arguments, which correspond to output modes:
232 .Bl -tag -width "-Tlocale"
233 .It Fl T Ns Cm ascii
234 Produce 7-bit ASCII output.
236 .Sx ASCII Output .
237 .It Fl T Ns Cm html
238 Produce HTML5, CSS1, and MathML output.
240 .Sx HTML Output .
241 .It Fl T Ns Cm lint
242 Parse only: produce no output.
243 Implies
244 .Fl W Ns Cm warning .
245 .It Fl T Ns Cm locale
246 Encode output using the current locale.
247 This is the default.
249 .Sx Locale Output .
250 .It Fl T Ns Cm man
251 Produce
252 .Xr man 5
253 format output.
255 .Sx Man Output .
256 .It Fl T Ns Cm pdf
257 Produce PDF output.
259 .Sx PDF Output .
260 .It Fl T Ns Cm ps
261 Produce PostScript output.
263 .Sx PostScript Output .
264 .It Fl T Ns Cm tree
265 Produce an indented parse tree.
266 .It Fl T Ns Cm utf8
267 Encode output in the UTF\-8 multi-byte format.
269 .Sx UTF\-8 Output .
270 .It Fl T Ns Cm xhtml
271 This is a synonym for
272 .Fl T Ns Cm html .
275 If multiple input files are specified, these will be processed by the
276 corresponding filter in-order.
277 .Ss ASCII Output
278 Output produced by
279 .Fl T Ns Cm ascii
280 is rendered in standard 7-bit ASCII documented in
281 .Xr ascii 5 .
283 Font styles are applied by using back-spaced encoding such that an
284 underlined character
285 .Sq c
286 is rendered as
287 .Sq _ Ns \e[bs] Ns c ,
288 where
289 .Sq \e[bs]
290 is the back-space character number 8.
291 Emboldened characters are rendered as
292 .Sq c Ns \e[bs] Ns c .
294 The special characters documented in
295 .Xr mandoc_char 5
296 are rendered best-effort in an ASCII equivalent.
298 Output width is limited to 78 visible columns unless literal input lines
299 exceed this limit.
301 The following
302 .Fl O
303 arguments are accepted:
304 .Bl -tag -width Ds
305 .It Cm indent Ns = Ns Ar indent
306 The left margin for normal text is set to
307 .Ar indent
308 blank characters instead of the default of five for
309 .Xr mdoc 5
310 and seven for
311 .Xr man 5 .
312 Increasing this is not recommended; it may result in degraded formatting,
313 for example overfull lines or ugly line breaks.
314 .It Cm width Ns = Ns Ar width
315 The output width is set to
316 .Ar width ,
317 which will normalise to \(>=58.
319 .Ss HTML Output
320 Output produced by
321 .Fl T Ns Cm html
322 conforms to HTML5 using optional self-closing tags.
323 Default styles use only CSS1.
324 Equations rendered from
325 .Xr eqn 5
326 blocks use MathML.
329 .Pa example.style.css
330 file documents style-sheet classes available for customising output.
331 If a style-sheet is not specified with
332 .Fl O Ns Ar style ,
333 .Fl T Ns Cm html
334 defaults to simple output (via an embedded style-sheet)
335 readable in any graphical or text-based web
336 browser.
338 Special characters are rendered in decimal-encoded UTF\-8.
340 The following
341 .Fl O
342 arguments are accepted:
343 .Bl -tag -width Ds
344 .It Cm fragment
345 Omit the <!DOCTYPE> declaration and the <html>, <head>, and <body>
346 elements and only emit the subtree below the <body> element.
348 .Cm style
349 argument will be ignored.
350 This is useful when embedding manual content within existing documents.
351 .It Cm includes Ns = Ns Ar fmt
352 The string
353 .Ar fmt ,
354 for example,
355 .Ar ../src/%I.html ,
356 is used as a template for linked header files (usually via the
357 .Sq \&In
358 macro).
359 Instances of
360 .Sq \&%I
361 are replaced with the include filename.
362 The default is not to present a
363 hyperlink.
364 .It Cm man Ns = Ns Ar fmt
365 The string
366 .Ar fmt ,
367 for example,
368 .Ar ../html%S/%N.%S.html ,
369 is used as a template for linked manuals (usually via the
370 .Sq \&Xr
371 macro).
372 Instances of
373 .Sq \&%N
375 .Sq %S
376 are replaced with the linked manual's name and section, respectively.
377 If no section is included, section 1 is assumed.
378 The default is not to
379 present a hyperlink.
380 .It Cm style Ns = Ns Ar style.css
381 The file
382 .Ar style.css
383 is used for an external style-sheet.
384 This must be a valid absolute or
385 relative URI.
387 .Ss Locale Output
388 Locale-depending output encoding is triggered with
389 .Fl T Ns Cm locale .
390 This is the default.
391 .Ss Man Output
392 Translate input format into
393 .Xr man 5
394 output format.
395 This is useful for distributing manual sources to legacy systems
396 lacking
397 .Xr mdoc 5
398 formatters.
401 .Xr mdoc 5
402 is passed as input, it is translated into
403 .Xr man 5 .
404 If the input format is
405 .Xr man 5 ,
406 the input is copied to the output, expanding any
407 .Xr mandoc_roff 5
408 .Sq so
409 requests.
410 The parser is also run, and as usual, the
411 .Fl W
412 level controls which
413 .Sx DIAGNOSTICS
414 are displayed before copying the input to the output.
415 .Ss PDF Output
416 PDF-1.1 output may be generated by
417 .Fl T Ns Cm pdf .
419 .Sx PostScript Output
421 .Fl O
422 arguments and defaults.
423 .Ss PostScript Output
424 PostScript
425 .Qq Adobe-3.0
426 Level-2 pages may be generated by
427 .Fl T Ns Cm ps .
428 Output pages default to letter sized and are rendered in the Times font
429 family, 11-point.
430 Margins are calculated as 1/9 the page length and width.
431 Line-height is 1.4m.
433 Special characters are rendered as in
434 .Sx ASCII Output .
436 The following
437 .Fl O
438 arguments are accepted:
439 .Bl -tag -width Ds
440 .It Cm paper Ns = Ns Ar name
441 The paper size
442 .Ar name
443 may be one of
444 .Ar a3 ,
445 .Ar a4 ,
446 .Ar a5 ,
447 .Ar legal ,
449 .Ar letter .
450 You may also manually specify dimensions as
451 .Ar NNxNN ,
452 width by height in millimetres.
453 If an unknown value is encountered,
454 .Ar letter
455 is used.
457 .Ss UTF\-8 Output
459 .Fl T Ns Cm utf8
460 to force a UTF\-8 locale.
462 .Sx Locale Output
463 for details and options.
464 .Sh EXIT STATUS
467 utility exits with one of the following values, controlled by the message
468 .Ar level
469 associated with the
470 .Fl W
471 option:
473 .Bl -tag -width Ds -compact
474 .It 0
475 No warnings or errors occurred, or those that did were ignored because
476 they were lower than the requested
477 .Ar level .
478 .It 2
479 At least one warning occurred, but no error, and
480 .Fl W Ns Cm warning
481 was specified.
482 .It 3
483 At least one parsing error occurred,
484 but no unsupported feature was encountered, and
485 .Fl W Ns Cm error
487 .Fl W Ns Cm warning
488 was specified.
489 .It 4
490 At least one unsupported feature was encountered, and
491 .Fl W Ns Cm unsupp ,
492 .Fl W Ns Cm error
494 .Fl W Ns Cm warning
495 was specified.
496 .It 5
497 Invalid command line arguments were specified.
498 No input files have been read.
499 .It 6
500 An operating system error occurred, for example exhaustion
501 of memory, file descriptors, or process table entries.
502 Such errors cause
504 to exit at once, possibly in the middle of parsing or formatting a file.
507 Note that selecting
508 .Fl T Ns Cm lint
509 output mode implies
510 .Fl W Ns Cm warning .
511 .Sh EXAMPLES
512 To page manuals to the terminal:
514 .Dl $ mandoc \-Wall,stop mandoc.1 2\*(Gt&1 | less
515 .Dl $ mandoc mandoc.1 mdoc.3 mdoc.5 | less
517 To produce HTML manuals with
518 .Ar style.css
519 as the style-sheet:
521 .Dl $ mandoc \-Thtml -Ostyle=style.css mdoc.5 \*(Gt mdoc.5.html
523 To check over a large set of manuals:
525 .Dl $ mandoc \-Tlint `find /usr/src -name \e*\e.[1-9]`
527 To produce a series of PostScript manuals for A4 paper:
529 .Dl $ mandoc \-Tps \-Opaper=a4 mdoc.5 man.5 \*(Gt manuals.ps
531 Convert a modern
532 .Xr mdoc 5
533 manual to the older
534 .Xr man 5
535 format, for use on systems lacking an
536 .Xr mdoc 5
537 parser:
539 .Dl $ mandoc \-Tman foo.mdoc \*(Gt foo.man
540 .Sh DIAGNOSTICS
541 Messages displayed by
543 follow this format:
545 .D1 Nm Ns : Ar file : Ns Ar line : Ns Ar column : level : message : macro args
547 Line and column numbers start at 1.
548 Both are omitted for messages referring to an input file as a whole.
549 Macro names and arguments are omitted where meaningless.
550 Fatal messages about invalid command line arguments
551 or operating system errors, for example when memory is exhausted,
552 may also omit the
553 .Ar file
555 .Ar level
556 fields.
558 Message levels have the following meanings:
559 .Bl -tag -width "warning"
560 .It Cm unsupp
561 An input file uses unsupported low-level
562 .Xr mandoc_roff 5
563 features.
564 The output may be incomplete and/or misformatted,
565 so using GNU troff instead of
567 to process the file may be preferable.
568 .It Cm error
569 An input file contains invalid syntax that cannot be safely interpreted.
570 By discarding part of the input or inserting missing tokens,
571 the parser is able to continue, and the error does not prevent
572 generation of formatted output, but typically, preparing that
573 output involves information loss, broken document structure
574 or unintended formatting, no matter whether
576 or GNU troff is used.
577 In many cases, the output of
579 and GNU troff is identical, but in some,
581 is more resilient than GNU troff with respect to malformed input.
583 Non-existent or unreadable input files are also reported on the
584 .Cm error
585 level.
586 In that case, the parser cannot even be started and no output
587 is produced from those input files.
588 .It Cm warning
589 An input file uses obsolete, discouraged or non-portable syntax.
590 All the same, the meaning of the input is unambiguous and a correct
591 rendering can be produced.
592 Documents causing warnings may render poorly when using other
593 formatting tools instead of
594 .Nm .
597 Messages of the
598 .Cm warning ,
599 .Cm error ,
601 .Cm unsupp
602 levels except those about non-existent or unreadable input files
603 are hidden unless their level, or a lower level, is requested using a
604 .Fl W
605 option or
606 .Fl T Ns Cm lint
607 output mode.
608 .Ss Warnings related to the document prologue
609 .Bl -ohang
610 .It Sy "missing manual title, using UNTITLED"
611 .Pq mdoc
613 .Ic \&Dt
614 macro has no arguments, or there is no
615 .Ic \&Dt
616 macro before the first non-prologue macro.
617 .It Sy "missing manual title, using \(dq\(dq"
618 .Pq man
619 There is no
620 .Ic \&TH
621 macro, or it has no arguments.
622 .It Sy "lower case character in document title"
623 .Pq mdoc , man
624 The title is still used as given in the
625 .Ic \&Dt
627 .Ic \&TH
628 macro.
629 .It Sy "missing manual section, using \(dq\(dq"
630 .Pq mdoc , man
632 .Ic \&Dt
634 .Ic \&TH
635 macro lacks the mandatory section argument.
636 .It Sy "unknown manual section"
637 .Pq mdoc
638 The section number in a
639 .Ic \&Dt
640 line is invalid, but still used.
641 .It Sy "missing date, using today's date"
642 .Pq mdoc, man
643 The document was parsed as
644 .Xr mdoc 5
645 and it has no
646 .Ic \&Dd
647 macro, or the
648 .Ic \&Dd
649 macro has no arguments or only empty arguments;
650 or the document was parsed as
651 .Xr man 5
652 and it has no
653 .Ic \&TH
654 macro, or the
655 .Ic \&TH
656 macro has less than three arguments or its third argument is empty.
657 .It Sy "cannot parse date, using it verbatim"
658 .Pq mdoc , man
659 The date given in a
660 .Ic \&Dd
662 .Ic \&TH
663 macro does not follow the conventional format.
664 .It Sy "missing Os macro, using \(dq\(dq"
665 .Pq mdoc
666 The default or current system is not shown in this case.
667 .It Sy "duplicate prologue macro"
668 .Pq mdoc
669 One of the prologue macros occurs more than once.
670 The last instance overrides all previous ones.
671 .It Sy "late prologue macro"
672 .Pq mdoc
674 .Ic \&Dd
676 .Ic \&Os
677 macro occurs after some non-prologue macro, but still takes effect.
678 .It Sy "skipping late title macro"
679 .Pq mdoc
681 .Ic \&Dt
682 macro appears after the first non-prologue macro.
683 Traditional formatters cannot handle this because
684 they write the page header before parsing the document body.
685 Even though this technical restriction does not apply to
686 .Nm ,
687 traditional semantics is preserved.
688 The late macro is discarded including its arguments.
689 .It Sy "prologue macros out of order"
690 .Pq mdoc
691 The prologue macros are not given in the conventional order
692 .Ic \&Dd ,
693 .Ic \&Dt ,
694 .Ic \&Os .
695 All three macros are used even when given in another order.
697 .Ss Warnings regarding document structure
698 .Bl -ohang
699 .It Sy ".so is fragile, better use ln(1)"
700 .Pq roff
701 Including files only works when the parser program runs with the correct
702 current working directory.
703 .It Sy "no document body"
704 .Pq mdoc , man
705 The document body contains neither text nor macros.
706 An empty document is shown, consisting only of a header and a footer line.
707 .It Sy "content before first section header"
708 .Pq mdoc , man
709 Some macros or text precede the first
710 .Ic \&Sh
712 .Ic \&SH
713 section header.
714 The offending macros and text are parsed and added to the top level
715 of the syntax tree, outside any section block.
716 .It Sy "first section is not NAME"
717 .Pq mdoc
718 The argument of the first
719 .Ic \&Sh
720 macro is not
721 .Sq NAME .
722 This may confuse
723 .Xr makewhatis 8
725 .Xr apropos 1 .
726 .It Sy "NAME section without name"
727 .Pq mdoc
728 The NAME section does not contain any
729 .Ic \&Nm
730 child macro.
731 .It Sy "NAME section without description"
732 .Pq mdoc
733 The NAME section lacks the mandatory
734 .Ic \&Nd
735 child macro.
736 .It Sy "description not at the end of NAME"
737 .Pq mdoc
738 The NAME section does contain an
739 .Ic \&Nd
740 child macro, but other content follows it.
741 .It Sy "bad NAME section content"
742 .Pq mdoc
743 The NAME section contains plain text or macros other than
744 .Ic \&Nm
746 .Ic \&Nd .
747 .It Sy "missing description line, using \(dq\(dq"
748 .Pq mdoc
750 .Ic \&Nd
751 macro lacks the required argument.
752 The title line of the manual will end after the dash.
753 .It Sy "sections out of conventional order"
754 .Pq mdoc
755 A standard section occurs after another section it usually precedes.
756 All section titles are used as given,
757 and the order of sections is not changed.
758 .It Sy "duplicate section title"
759 .Pq mdoc
760 The same standard section title occurs more than once.
761 .It Sy "unexpected section"
762 .Pq mdoc
763 A standard section header occurs in a section of the manual
764 where it normally isn't useful.
765 .It Sy "unusual Xr order"
766 .Pq mdoc
767 In the SEE ALSO section, an
768 .Ic \&Xr
769 macro with a lower section number follows one with a higher number,
770 or two
771 .Ic \&Xr
772 macros refering to the same section are out of alphabetical order.
773 .It Sy "unusual Xr punctuation"
774 .Pq mdoc
775 In the SEE ALSO section, punctuation between two
776 .Ic \&Xr
777 macros differs from a single comma, or there is trailing punctuation
778 after the last
779 .Ic \&Xr
780 macro.
781 .It Sy "AUTHORS section without An macro"
782 .Pq mdoc
783 An AUTHORS sections contains no
784 .Ic \&An
785 macros, or only empty ones.
786 Probably, there are author names lacking markup.
788 .Ss "Warnings related to macros and nesting"
789 .Bl -ohang
790 .It Sy "obsolete macro"
791 .Pq mdoc
792 See the
793 .Xr mdoc 5
794 manual for replacements.
795 .It Sy "macro neither callable nor escaped"
796 .Pq mdoc
797 The name of a macro that is not callable appears on a macro line.
798 It is printed verbatim.
799 If the intention is to call it, move it to its own input line;
800 otherwise, escape it by prepending
801 .Sq \e& .
802 .It Sy "skipping paragraph macro"
804 .Xr mdoc 5
805 documents, this happens
806 .Bl -dash -compact
808 at the beginning and end of sections and subsections
810 right before non-compact lists and displays
812 at the end of items in non-column, non-compact lists
814 and for multiple consecutive paragraph macros.
817 .Xr man 5
818 documents, it happens
819 .Bl -dash -compact
821 for empty
822 .Ic \&P ,
823 .Ic \&PP ,
825 .Ic \&LP
826 macros
829 .Ic \&IP
830 macros having neither head nor body arguments
833 .Ic \&br
835 .Ic \&sp
836 right after
837 .Ic \&SH
839 .Ic \&SS
841 .It Sy "moving paragraph macro out of list"
842 .Pq mdoc
843 A list item in a
844 .Ic \&Bl
845 list contains a trailing paragraph macro.
846 The paragraph macro is moved after the end of the list.
847 .It Sy "skipping no-space macro"
848 .Pq mdoc
849 An input line begins with an
850 .Ic \&Ns
851 macro.
852 The macro is ignored.
853 .It Sy "blocks badly nested"
854 .Pq mdoc
855 If two blocks intersect, one should completely contain the other.
856 Otherwise, rendered output is likely to look strange in any output
857 format, and rendering in SGML-based output formats is likely to be
858 outright wrong because such languages do not support badly nested
859 blocks at all.
860 Typical examples of badly nested blocks are
861 .Qq Ic \&Ao \&Bo \&Ac \&Bc
863 .Qq Ic \&Ao \&Bq \&Ac .
864 In these examples,
865 .Ic \&Ac
866 breaks
867 .Ic \&Bo
869 .Ic \&Bq ,
870 respectively.
871 .It Sy "nested displays are not portable"
872 .Pq mdoc
874 .Ic \&Bd ,
875 .Ic \&D1 ,
877 .Ic \&Dl
878 display occurs nested inside another
879 .Ic \&Bd
880 display.
881 This works with
882 .Nm ,
883 but fails with most other implementations.
884 .It Sy "moving content out of list"
885 .Pq mdoc
887 .Ic \&Bl
888 list block contains text or macros before the first
889 .Ic \&It
890 macro.
891 The offending children are moved before the beginning of the list.
892 .It Sy ".Vt block has child macro"
893 .Pq mdoc
895 .Ic \&Vt
896 macro supports plain text arguments only.
897 Formatting may be ugly and semantic searching
898 for the affected content might not work.
899 .It Sy "fill mode already enabled, skipping"
900 .Pq man
902 .Ic \&fi
903 request occurs even though the document is still in fill mode,
904 or already switched back to fill mode.
905 It has no effect.
906 .It Sy "fill mode already disabled, skipping"
907 .Pq man
909 .Ic \&nf
910 request occurs even though the document already switched to no-fill mode
911 and did not switch back to fill mode yet.
912 It has no effect.
913 .It Sy "line scope broken"
914 .Pq man
915 While parsing the next-line scope of the previous macro,
916 another macro is found that prematurely terminates the previous one.
917 The previous, interrupted macro is deleted from the parse tree.
919 .Ss "Warnings related to missing arguments"
920 .Bl -ohang
921 .It Sy "skipping empty request"
922 .Pq roff , eqn
923 The macro name is missing from a macro definition request,
924 or an
925 .Xr eqn 5
926 control statement or operation keyword lacks its required argument.
927 .It Sy "conditional request controls empty scope"
928 .Pq roff
929 A conditional request is only useful if any of the following
930 follows it on the same logical input line:
931 .Bl -dash -compact
934 .Sq \e{
935 keyword to open a multi-line scope.
937 A request or macro or some text, resulting in a single-line scope.
939 The immediate end of the logical line without any intervening whitespace,
940 resulting in next-line scope.
942 Here, a conditional request is followed by trailing whitespace only,
943 and there is no other content on its logical input line.
944 Note that it doesn't matter whether the logical input line is split
945 across multiple physical input lines using
946 .Sq \e
947 line continuation characters.
948 This is one of the rare cases
949 where trailing whitespace is syntactically significant.
950 The conditional request controls a scope containing whitespace only,
951 so it is unlikely to have a significant effect,
952 except that it may control a following
953 .Ic \&el
954 clause.
955 .It Sy "skipping empty macro"
956 .Pq mdoc
957 The indicated macro has no arguments and hence no effect.
958 .It Sy "empty block"
959 .Pq mdoc , man
961 .Ic \&Bd ,
962 .Ic \&Bk ,
963 .Ic \&Bl ,
964 .Ic \&D1 ,
965 .Ic \&Dl ,
966 .Ic \&RS ,
968 .Ic \&UR
969 block contains nothing in its body and will produce no output.
970 .It Sy "empty argument, using 0n"
971 .Pq mdoc
972 The required width is missing after
973 .Ic \&Bd
975 .Ic \&Bl
976 .Fl offset
978 .Fl width.
979 .It Sy "missing display type, using -ragged"
980 .Pq mdoc
982 .Ic \&Bd
983 macro is invoked without the required display type.
984 .It Sy "list type is not the first argument"
985 .Pq mdoc
986 In a
987 .Ic \&Bl
988 macro, at least one other argument precedes the type argument.
991 utility copes with any argument order, but some other
992 .Xr mdoc 5
993 implementations do not.
994 .It Sy "missing -width in -tag list, using 8n"
995 .Pq mdoc
996 Every
997 .Ic \&Bl
998 macro having the
999 .Fl tag
1000 argument requires
1001 .Fl width ,
1002 too.
1003 .It Sy "missing utility name, using \(dq\(dq"
1004 .Pq mdoc
1006 .Ic \&Ex Fl std
1007 macro is called without an argument before
1008 .Ic \&Nm
1009 has first been called with an argument.
1010 .It Sy "missing function name, using \(dq\(dq"
1011 .Pq mdoc
1013 .Ic \&Fo
1014 macro is called without an argument.
1015 No function name is printed.
1016 .It Sy "empty head in list item"
1017 .Pq mdoc
1018 In a
1019 .Ic \&Bl
1020 .Fl diag ,
1021 .Fl hang ,
1022 .Fl inset ,
1023 .Fl ohang ,
1025 .Fl tag
1026 list, an
1027 .Ic \&It
1028 macro lacks the required argument.
1029 The item head is left empty.
1030 .It Sy "empty list item"
1031 .Pq mdoc
1032 In a
1033 .Ic \&Bl
1034 .Fl bullet ,
1035 .Fl dash ,
1036 .Fl enum ,
1038 .Fl hyphen
1039 list, an
1040 .Ic \&It
1041 block is empty.
1042 An empty list item is shown.
1043 .It Sy "missing font type, using \efR"
1044 .Pq mdoc
1046 .Ic \&Bf
1047 macro has no argument.
1048 It switches to the default font.
1049 .It Sy "unknown font type, using \efR"
1050 .Pq mdoc
1052 .Ic \&Bf
1053 argument is invalid.
1054 The default font is used instead.
1055 .It Sy "nothing follows prefix"
1056 .Pq mdoc
1058 .Ic \&Pf
1059 macro has no argument, or only one argument and no macro follows
1060 on the same input line.
1061 This defeats its purpose; in particular, spacing is not suppressed
1062 before the text or macros following on the next input line.
1063 .It Sy "empty reference block"
1064 .Pq mdoc
1066 .Ic \&Rs
1067 macro is immediately followed by an
1068 .Ic \&Re
1069 macro on the next input line.
1070 Such an empty block does not produce any output.
1071 .It Sy "missing -std argument, adding it"
1072 .Pq mdoc
1074 .Ic \&Ex
1076 .Ic \&Rv
1077 macro lacks the required
1078 .Fl std
1079 argument.
1082 utility assumes
1083 .Fl std
1084 even when it is not specified, but other implementations may not.
1085 .It Sy "missing option string, using \(dq\(dq"
1086 .Pq man
1088 .Ic \&OP
1089 macro is invoked without any argument.
1090 An empty pair of square brackets is shown.
1091 .It Sy "missing resource identifier, using \(dq\(dq"
1092 .Pq man
1094 .Ic \&UR
1095 macro is invoked without any argument.
1096 An empty pair of angle brackets is shown.
1097 .It Sy "missing eqn box, using \(dq\(dq"
1098 .Pq eqn
1099 A diacritic mark or a binary operator is found,
1100 but there is nothing to the left of it.
1101 An empty box is inserted.
1103 .Ss "Warnings related to bad macro arguments"
1104 .Bl -ohang
1105 .It Sy "unterminated quoted argument"
1106 .Pq roff
1107 Macro arguments can be enclosed in double quote characters
1108 such that space characters and macro names contained in the quoted
1109 argument need not be escaped.
1110 The closing quote of the last argument of a macro can be omitted.
1111 However, omitting it is not recommended because it makes the code
1112 harder to read.
1113 .It Sy "duplicate argument"
1114 .Pq mdoc
1116 .Ic \&Bd
1118 .Ic \&Bl
1119 macro has more than one
1120 .Fl compact ,
1121 more than one
1122 .Fl offset ,
1123 or more than one
1124 .Fl width
1125 argument.
1126 All but the last instances of these arguments are ignored.
1127 .It Sy "skipping duplicate argument"
1128 .Pq mdoc
1130 .Ic \&An
1131 macro has more than one
1132 .Fl split
1134 .Fl nosplit
1135 argument.
1136 All but the first of these arguments are ignored.
1137 .It Sy "skipping duplicate display type"
1138 .Pq mdoc
1140 .Ic \&Bd
1141 macro has more than one type argument; the first one is used.
1142 .It Sy "skipping duplicate list type"
1143 .Pq mdoc
1145 .Ic \&Bl
1146 macro has more than one type argument; the first one is used.
1147 .It Sy "skipping -width argument"
1148 .Pq mdoc
1150 .Ic \&Bl
1151 .Fl column ,
1152 .Fl diag ,
1153 .Fl ohang ,
1154 .Fl inset ,
1156 .Fl item
1157 list has a
1158 .Fl width
1159 argument.
1160 That has no effect.
1161 .It Sy "wrong number of cells"
1162 In a line of a
1163 .Ic \&Bl Fl column
1164 list, the number of tabs or
1165 .Ic \&Ta
1166 macros is less than the number expected from the list header line
1167 or exceeds the expected number by more than one.
1168 Missing cells remain empty, and all cells exceeding the number of
1169 columns are joined into one single cell.
1170 .It Sy "unknown AT&T UNIX version"
1171 .Pq mdoc
1173 .Ic \&At
1174 macro has an invalid argument.
1175 It is used verbatim, with
1176 .Qq "AT&T UNIX "
1177 prefixed to it.
1178 .It Sy "comma in function argument"
1179 .Pq mdoc
1180 An argument of an
1181 .Ic \&Fa
1183 .Ic \&Fn
1184 macro contains a comma; it should probably be split into two arguments.
1185 .It Sy "parenthesis in function name"
1186 .Pq mdoc
1187 The first argument of an
1188 .Ic \&Fc
1190 .Ic \&Fn
1191 macro contains an opening or closing parenthesis; that's probably wrong,
1192 parentheses are added automatically.
1193 .It Sy "invalid content in Rs block"
1194 .Pq mdoc
1196 .Ic \&Rs
1197 block contains plain text or non-% macros.
1198 The bogus content is left in the syntax tree.
1199 Formatting may be poor.
1200 .It Sy "invalid Boolean argument"
1201 .Pq mdoc
1203 .Ic \&Sm
1204 macro has an argument other than
1205 .Cm on
1207 .Cm off .
1208 The invalid argument is moved out of the macro, which leaves the macro
1209 empty, causing it to toggle the spacing mode.
1210 .It Sy "unknown font, skipping request"
1211 .Pq man , tbl
1213 .Xr mandoc_roff 5
1214 .Ic \&ft
1215 request or a
1216 .Xr tbl 5
1217 .Ic \&f
1218 layout modifier has an unknown
1219 .Ar font
1220 argument.
1221 .It Sy "odd number of characters in request"
1222 .Pq roff
1224 .Ic \&tr
1225 request contains an odd number of characters.
1226 The last character is mapped to the blank character.
1228 .Ss "Warnings related to plain text"
1229 .Bl -ohang
1230 .It Sy "blank line in fill mode, using .sp"
1231 .Pq mdoc
1232 The meaning of blank input lines is only well-defined in non-fill mode:
1233 In fill mode, line breaks of text input lines are not supposed to be
1234 significant.
1235 However, for compatibility with groff, blank lines in fill mode
1236 are replaced with
1237 .Ic \&sp
1238 requests.
1239 .It Sy "tab in filled text"
1240 .Pq mdoc , man
1241 The meaning of tab characters is only well-defined in non-fill mode:
1242 In fill mode, whitespace is not supposed to be significant
1243 on text input lines.
1244 As an implementation dependent choice, tab characters on text lines
1245 are passed through to the formatters in any case.
1246 Given that the text before the tab character will be filled,
1247 it is hard to predict which tab stop position the tab will advance to.
1248 .It Sy "whitespace at end of input line"
1249 .Pq mdoc , man , roff
1250 Whitespace at the end of input lines is almost never semantically
1251 significant \(em but in the odd case where it might be, it is
1252 extremely confusing when reviewing and maintaining documents.
1253 .It Sy "bad comment style"
1254 .Pq roff
1255 Comment lines start with a dot, a backslash, and a double-quote character.
1258 utility treats the line as a comment line even without the backslash,
1259 but leaving out the backslash might not be portable.
1260 .It Sy "invalid escape sequence"
1261 .Pq roff
1262 An escape sequence has an invalid opening argument delimiter, lacks the
1263 closing argument delimiter, or the argument has too few characters.
1264 If the argument is incomplete,
1265 .Ic \e*
1267 .Ic \en
1268 expand to an empty string,
1269 .Ic \eB
1270 to the digit
1271 .Sq 0 ,
1273 .Ic \ew
1274 to the length of the incomplete argument.
1275 All other invalid escape sequences are ignored.
1276 .It Sy "undefined string, using \(dq\(dq"
1277 .Pq roff
1278 If a string is used without being defined before,
1279 its value is implicitly set to the empty string.
1280 However, defining strings explicitly before use
1281 keeps the code more readable.
1283 .Ss "Warnings related to tables"
1284 .Bl -ohang
1285 .It Sy "tbl line starts with span"
1286 .Pq tbl
1287 The first cell in a table layout line is a horizontal span
1288 .Pq Sq Cm s .
1289 Data provided for this cell is ignored, and nothing is printed in the cell.
1290 .It Sy "tbl column starts with span"
1291 .Pq tbl
1292 The first line of a table layout specification
1293 requests a vertical span
1294 .Pq Sq Cm ^ .
1295 Data provided for this cell is ignored, and nothing is printed in the cell.
1296 .It Sy "skipping vertical bar in tbl layout"
1297 .Pq tbl
1298 A table layout specification contains more than two consecutive vertical bars.
1299 A double bar is printed, all additional bars are discarded.
1301 .Ss "Errors related to tables"
1302 .Bl -ohang
1303 .It Sy "non-alphabetic character in tbl options"
1304 .Pq tbl
1305 The table options line contains a character other than a letter,
1306 blank, or comma where the beginning of an option name is expected.
1307 The character is ignored.
1308 .It Sy "skipping unknown tbl option"
1309 .Pq tbl
1310 The table options line contains a string of letters that does not
1311 match any known option name.
1312 The word is ignored.
1313 .It Sy "missing tbl option argument"
1314 .Pq tbl
1315 A table option that requires an argument is not followed by an
1316 opening parenthesis, or the opening parenthesis is immediately
1317 followed by a closing parenthesis.
1318 The option is ignored.
1319 .It Sy "wrong tbl option argument size"
1320 .Pq tbl
1321 A table option argument contains an invalid number of characters.
1322 Both the option and the argument are ignored.
1323 .It Sy "empty tbl layout"
1324 .Pq tbl
1325 A table layout specification is completely empty,
1326 specifying zero lines and zero columns.
1327 As a fallback, a single left-justified column is used.
1328 .It Sy "invalid character in tbl layout"
1329 .Pq tbl
1330 A table layout specification contains a character that can neither
1331 be interpreted as a layout key character nor as a layout modifier,
1332 or a modifier precedes the first key.
1333 The invalid character is discarded.
1334 .It Sy "unmatched parenthesis in tbl layout"
1335 .Pq tbl
1336 A table layout specification contains an opening parenthesis,
1337 but no matching closing parenthesis.
1338 The rest of the input line, starting from the parenthesis, has no effect.
1339 .It Sy "tbl without any data cells"
1340 .Pq tbl
1341 A table does not contain any data cells.
1342 It will probably produce no output.
1343 .It Sy "ignoring data in spanned tbl cell"
1344 .Pq tbl
1345 A table cell is marked as a horizontal span
1346 .Pq Sq Cm s
1347 or vertical span
1348 .Pq Sq Cm ^
1349 in the table layout, but it contains data.
1350 The data is ignored.
1351 .It Sy "ignoring extra tbl data cells"
1352 .Pq tbl
1353 A data line contains more cells than the corresponding layout line.
1354 The data in the extra cells is ignored.
1355 .It Sy "data block open at end of tbl"
1356 .Pq tbl
1357 A data block is opened with
1358 .Cm T{ ,
1359 but never closed with a matching
1360 .Cm T} .
1361 The remaining data lines of the table are all put into one cell,
1362 and any remaining cells stay empty.
1364 .Ss "Errors related to roff, mdoc, and man code"
1365 .Bl -ohang
1366 .It Sy "input stack limit exceeded, infinite loop?"
1367 .Pq roff
1368 Explicit recursion limits are implemented for the following features,
1369 in order to prevent infinite loops:
1370 .Bl -dash -compact
1372 expansion of nested escape sequences
1373 including expansion of strings and number registers,
1375 expansion of nested user-defined macros,
1378 .Ic \&so
1379 file inclusion.
1381 When a limit is hit, the output is incorrect, typically losing
1382 some content, but the parser can continue.
1383 .It Sy "skipping bad character"
1384 .Pq mdoc , man , roff
1385 The input file contains a byte that is not a printable
1386 .Xr ascii 5
1387 character.
1388 The message mentions the character number.
1389 The offending byte is replaced with a question mark
1390 .Pq Sq \&? .
1391 Consider editing the input file to replace the byte with an ASCII
1392 transliteration of the intended character.
1393 .It Sy "skipping unknown macro"
1394 .Pq mdoc , man , roff
1395 The first identifier on a request or macro line is neither recognized as a
1396 .Xr mandoc_roff 5
1397 request, nor as a user-defined macro, nor, respectively, as an
1398 .Xr mdoc 5
1400 .Xr man 5
1401 macro.
1402 It may be mistyped or unsupported.
1403 The request or macro is discarded including its arguments.
1404 .It Sy "skipping insecure request"
1405 .Pq roff
1406 An input file attempted to run a shell command
1407 or to read or write an external file.
1408 Such attempts are denied for security reasons.
1409 .It Sy "skipping item outside list"
1410 .Pq mdoc , eqn
1412 .Ic \&It
1413 macro occurs outside any
1414 .Ic \&Bl
1415 list, or an
1416 .Xr eqn 5
1417 .Ic above
1418 delimiter occurs outside any pile.
1419 It is discarded including its arguments.
1420 .It Sy "skipping column outside column list"
1421 .Pq mdoc
1423 .Ic \&Ta
1424 macro occurs outside any
1425 .Ic \&Bl Fl column
1426 block.
1427 It is discarded including its arguments.
1428 .It Sy "skipping end of block that is not open"
1429 .Pq mdoc , man , eqn , tbl , roff
1430 Various syntax elements can only be used to explicitly close blocks
1431 that have previously been opened.
1433 .Xr mdoc 5
1434 block closing macro, a
1435 .Xr man 5
1436 .Ic \&RE
1438 .Ic \&UE
1439 macro, an
1440 .Xr eqn 5
1441 right delimiter or closing brace, or the end of an equation, table, or
1442 .Xr mandoc_roff 5
1443 conditional request is encountered but no matching block is open.
1444 The offending request or macro is discarded.
1445 .It Sy "fewer RS blocks open, skipping"
1446 .Pq man
1448 .Ic \&RE
1449 macro is invoked with an argument, but less than the specified number of
1450 .Ic \&RS
1451 blocks is open.
1453 .Ic \&RE
1454 macro is discarded.
1455 .It Sy "inserting missing end of block"
1456 .Pq mdoc , tbl
1457 Various
1458 .Xr mdoc 5
1459 macros as well as tables require explicit closing by dedicated macros.
1460 A block that doesn't support bad nesting
1461 ends before all of its children are properly closed.
1462 The open child nodes are closed implicitly.
1463 .It Sy "appending missing end of block"
1464 .Pq mdoc , man , eqn , tbl , roff
1465 At the end of the document, an explicit
1466 .Xr mdoc 5
1467 block, a
1468 .Xr man 5
1469 next-line scope or
1470 .Ic \&RS
1472 .Ic \&UR
1473 block, an equation, table, or
1474 .Xr mandoc_roff 5
1475 conditional or ignore block is still open.
1476 The open block is closed implicitly.
1477 .It Sy "escaped character not allowed in a name"
1478 .Pq roff
1479 Macro, string and register identifiers consist of printable,
1480 non-whitespace ASCII characters.
1481 Escape sequences and characters and strings expressed in terms of them
1482 cannot form part of a name.
1483 The first argument of an
1484 .Ic \&am ,
1485 .Ic \&as ,
1486 .Ic \&de ,
1487 .Ic \&ds ,
1488 .Ic \&nr ,
1490 .Ic \&rr
1491 request, or any argument of an
1492 .Ic \&rm
1493 request, or the name of a request or user defined macro being called,
1494 is terminated by an escape sequence.
1495 In the cases of
1496 .Ic \&as ,
1497 .Ic \&ds ,
1499 .Ic \&nr ,
1500 the request has no effect at all.
1501 In the cases of
1502 .Ic \&am ,
1503 .Ic \&de ,
1504 .Ic \&rr ,
1506 .Ic \&rm ,
1507 what was parsed up to this point is used as the arguments to the request,
1508 and the rest of the input line is discarded including the escape sequence.
1509 When parsing for a request or a user-defined macro name to be called,
1510 only the escape sequence is discarded.
1511 The characters preceding it are used as the request or macro name,
1512 the characters following it are used as the arguments to the request or macro.
1513 .It Sy "NOT IMPLEMENTED: Bd -file"
1514 .Pq mdoc
1515 For security reasons, the
1516 .Ic \&Bd
1517 macro does not support the
1518 .Fl file
1519 argument.
1520 By requesting the inclusion of a sensitive file, a malicious document
1521 might otherwise trick a privileged user into inadvertently displaying
1522 the file on the screen, revealing the file content to bystanders.
1523 The argument is ignored including the file name following it.
1524 .It Sy "missing list type, using -item"
1525 .Pq mdoc
1527 .Ic \&Bl
1528 macro fails to specify the list type.
1529 .It Sy "missing manual name, using \(dq\(dq"
1530 .Pq mdoc
1531 The first call to
1532 .Ic \&Nm
1533 lacks the required argument.
1534 .It Sy "uname(3) system call failed, using UNKNOWN"
1535 .Pq mdoc
1537 .Ic \&Os
1538 macro is called without arguments, and the
1539 .Xr uname 3
1540 system call failed.
1541 As a workaround,
1543 can be compiled with
1544 .Sm off
1545 .Fl D Cm OSNAME=\(dq\e\(dq Ar string Cm \e\(dq\(dq .
1546 .Sm on
1547 .It Sy "unknown standard specifier"
1548 .Pq mdoc
1550 .Ic \&St
1551 macro has an unknown argument and is discarded.
1552 .It Sy "skipping request without numeric argument"
1553 .Pq roff , eqn
1555 .Ic \&it
1556 request or an
1557 .Xr eqn 5
1558 .Ic \&size
1560 .Ic \&gsize
1561 statement has a non-numeric or negative argument or no argument at all.
1562 The invalid request or statement is ignored.
1563 .It Sy "NOT IMPLEMENTED: .so with absolute path or \(dq..\(dq"
1564 .Pq roff
1565 For security reasons,
1567 allows
1568 .Ic \&so
1569 file inclusion requests only with relative paths
1570 and only without ascending to any parent directory.
1571 By requesting the inclusion of a sensitive file, a malicious document
1572 might otherwise trick a privileged user into inadvertently displaying
1573 the file on the screen, revealing the file content to bystanders.
1575 only shows the path as it appears behind
1576 .Ic \&so .
1577 .It Sy ".so request failed"
1578 .Pq roff
1579 Servicing a
1580 .Ic \&so
1581 request requires reading an external file, but the file could not be
1582 opened.
1584 only shows the path as it appears behind
1585 .Ic \&so .
1586 .It Sy "skipping all arguments"
1587 .Pq mdoc , man , eqn , roff
1589 .Xr mdoc 5
1590 .Ic \&Bt ,
1591 .Ic \&Ed ,
1592 .Ic \&Ef ,
1593 .Ic \&Ek ,
1594 .Ic \&El ,
1595 .Ic \&Lp ,
1596 .Ic \&Pp ,
1597 .Ic \&Re ,
1598 .Ic \&Rs ,
1600 .Ic \&Ud
1601 macro, an
1602 .Ic \&It
1603 macro in a list that don't support item heads, a
1604 .Xr man 5
1605 .Ic \&LP ,
1606 .Ic \&P ,
1608 .Ic \&PP
1609 macro, an
1610 .Xr eqn 5
1611 .Ic \&EQ
1613 .Ic \&EN
1614 macro, or a
1615 .Xr mandoc_roff 5
1616 .Ic \&br ,
1617 .Ic \&fi ,
1619 .Ic \&nf
1620 request or
1621 .Sq \&..
1622 block closing request is invoked with at least one argument.
1623 All arguments are ignored.
1624 .It Sy "skipping excess arguments"
1625 .Pq mdoc , man , roff
1626 A macro or request is invoked with too many arguments:
1627 .Bl -dash -offset 2n -width 2n -compact
1629 .Ic \&Fo ,
1630 .Ic \&PD ,
1631 .Ic \&RS ,
1632 .Ic \&UR ,
1633 .Ic \&ft ,
1635 .Ic \&sp
1636 with more than one argument
1638 .Ic \&An
1639 with another argument after
1640 .Fl split
1642 .Fl nosplit
1644 .Ic \&RE
1645 with more than one argument or with a non-integer argument
1647 .Ic \&OP
1648 or a request of the
1649 .Ic \&de
1650 family with more than two arguments
1652 .Ic \&Dt
1653 with more than three arguments
1655 .Ic \&TH
1656 with more than five arguments
1658 .Ic \&Bd ,
1659 .Ic \&Bk ,
1661 .Ic \&Bl
1662 with invalid arguments
1664 The excess arguments are ignored.
1666 .Ss Unsupported features
1667 .Bl -ohang
1668 .It Sy "input too large"
1669 .Pq mdoc , man
1670 Currently,
1672 cannot handle input files larger than its arbitrary size limit
1673 of 2^31 bytes (2 Gigabytes).
1674 Since useful manuals are always small, this is not a problem in practice.
1675 Parsing is aborted as soon as the condition is detected.
1676 .It Sy "unsupported control character"
1677 .Pq roff
1678 An ASCII control character supported by other
1679 .Xr mandoc_roff 5
1680 implementations but not by
1682 was found in an input file.
1683 It is replaced by a question mark.
1684 .It Sy "unsupported roff request"
1685 .Pq roff
1686 An input file contains a
1687 .Xr mandoc_roff 5
1688 request supported by GNU troff or Heirloom troff but not by
1689 .Nm ,
1690 and it is likely that this will cause information loss
1691 or considerable misformatting.
1692 .It Sy "eqn delim option in tbl"
1693 .Pq eqn , tbl
1694 The options line of a table defines equation delimiters.
1695 Any equation source code contained in the table will be printed unformatted.
1696 .It Sy "unsupported table layout modifier"
1697 .Pq tbl
1698 A table layout specification contains an
1699 .Sq Cm m
1700 modifier.
1701 The modifier is discarded.
1702 .It Sy "ignoring macro in table"
1703 .Pq tbl , mdoc , man
1704 A table contains an invocation of an
1705 .Xr mdoc 5
1707 .Xr man 5
1708 macro or of an undefined macro.
1709 The macro is ignored, and its arguments are handled
1710 as if they were a text line.
1712 .Sh SEE ALSO
1713 .Xr eqn 5 ,
1714 .Xr man 5 ,
1715 .Xr mandoc_char 5 ,
1716 .Xr mandoc_roff 5 ,
1717 .Xr mdoc 5 ,
1718 .Xr tbl 5
1719 .Sh AUTHORS
1722 utility was written by
1723 .An Kristaps Dzonsons Aq Mt kristaps@bsd.lv
1724 and is maintained by
1725 .An Ingo Schwarze Aq Mt schwarze@openbsd.org .
1726 .Sh BUGS
1728 .Fl T Ns Cm html ,
1729 the maximum size of an element attribute is determined by
1730 .Dv BUFSIZ ,
1731 which is usually 1024 bytes.
1732 Be aware of this when setting long link
1733 formats such as
1734 .Fl O Ns Cm style Ns = Ns Ar really/long/link .