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