mandoc

{{Short description|Manpage formatter}}

{{lowercase title}}

{{Infobox software

| name = mandoc

| screenshot =

| caption =

| author =

| developer =

| released = November 2008

| latest release version = 1.14.6

| latest release date = {{Start date and age|2021|09|23}}{{cite web | url = http://mandoc.bsd.lv/NEWS | title = Release notes | date = September 23, 2021}}

| programming language = C

| genre = Typesetting

| license = ISC license

| website = {{URL|http://mandoc.bsd.lv/}}

}}

mandoc (historically called mdocml) is a utility used for formatting man pages in BSD Operating Systems (e.g. NetBSD), specifically those written in the mdoc and man macro languages. Unlike the groff and older troff and nroff tools that are predominantly used for this purpose by tools such as {{Code|man}}, mandoc focuses specifically on manuals and is not suitable for general-purpose type-setting.

{{Code|mandoc}} is mainly used to format the mdoc manuals used in the BSD Operating Systems, but it also implements most of the man macros used in Linux distributions, as well as a subset of roff commands occasionally intermixed with the man macros.{{man|7|roff|OpenBSD}}{{rp|at=1.14.5}} It does not support other macro sets such as mm and ms, or any typesetting features like hyphenation, fonts and alignment.{{rp|at=compatibility}} Simple styling such as bold and italics are supported, but italicized text is replaced by underlined text on the terminal.{{cite web |title=Italics and colour in manual pages on a nosh user-space virtual terminal |url=https://jdebp.uk/Softwares/nosh/italics-in-manuals.html |website=jdebp.eu}}{{man|1|mandoc|FreeBSD}}. "Font styles are applied by using back-spaced encoding..."

mandoc has built-in support for the troff soelim (inclusion) preprocessor and partial built-in support for tbl and eqn. It has strong support for UTF-8 output. It can also use the semantic information in mdoc manuals to implement semantic search, which before version 1.4.1, relied on sqlite.{{rp|at=1.4.1}}

History

Development began in November 2008 specifically to produce CSS-enabled HTML forms of manuals in response to the limitations of groff. mandoc gained initial text-mode output in February 2009.{{cite web|url=http://mdocml.bsd.lv/cgi-bin/cvsweb/?cvsroot=mdocml|title=Source history|date=|publisher=Mdocml.bsd.lv|accessdate=2010-12-18}} It was then showcased at AsiaBSDCon-2009.{{cite web|url=http://2009.asiabsdcon.org/live/abc2009-P6B.html|title=AsiaBSDCon 2009: Deprecating groff for BSD manual display|date=2009-03-15|publisher=2009.asiabsdcon.org|accessdate=2010-12-18}}{{cite web|url=http://2009.asiabsdcon.org/papers/abc2009-P6B-paper.pdf|title=Deprecating groff for BSD manual display|date=|format=PDF|accessdate=2010-12-18}}{{cite web|url=https://www.youtube.com/watch?v=z25FFo01Zpw|title=Video of AsiaBSDCon presentation|date=|publisher=Youtube.com|author= |accessdate=2010-12-18}} In summer of 2010, mandoc was the subject of a NetBSD-mentored Google Summer of Code project{{cite web|url=http://netbsd-soc.sourceforge.net/projects/mandoc_ps/|title=Google Summer of Code: mandoc_ps|date=|publisher=Netbsd-soc.sourceforge.net|accessdate=2010-12-18}} for producing PostScript and PDF output alongside the existing text, HTML, and XHTML outputs. This work was completed in August 2010.{{cite web|url=http://blog.netbsd.org/tnf/entry/google_summer_of_code_postscript|title=NetBSD Blog|date=2010-08-11|publisher=Blog.netbsd.org|accessdate=2010-12-18}} mandoc became the default formatter of manuals for OpenBSD 4.8, released in November 2010.{{cite web|url=http://www.openbsd.org/48.html|title=OpenBSD 4.8|date=2010-11-01|publisher=Openbsd.org|accessdate=2010-12-18}}{{cite web|url=http://www.undeadly.org/cgi?action=article&sid=20110314142734|title=groff deleted from tree}} It later became the default formatter in NetBSD, FreeBSD, illumos, Void Linux, Alpine Linux and macOS, and is also included in DragonFlyBSD, MINIX 3, Debian, Ubuntu, Gentoo, and Fedora.{{cite web|url=http://mdocml.bsd.lv/ports.html|title=Availability of the mandoc toolset|publisher=Mdocml.bsd.lv}} Its advantages were stated as high speed,{{cite web|last=Unangst|first=Ted|url=http://marc.info/?l=openbsd-misc&m=127070066732223|title=mandoc speed benchmarks}} license, and clean reimplementation.

Sample usage

The following demonstrates running mandoc on its own. Usually, it would be called via the man utility. In this example, foo.1 is the name of an mdoc UNIX manual.{{man|1|mandoc|OpenBSD}}

$ # Page manual to the terminal.

$ mandoc -l foo.1

$ # HTML output with a style-sheet.

$ mandoc -Thtml -Ostyle=style.css >foo.1.html

Multibyte (localised) manuals may also be rendered without preprocessing. In this example, foo.jp.1 is a Japanese manual encoded in UTF-8. mandoc will automatically detect the encoding.

$ # Page wide-character manual to the terminal.

$ mandoc -l foo.jp.1

The included apropos implementation can use semantic information in search:{{man|1|apropos|OpenBSD}}

$ # Search for all functions starting with 'str' having return type size_t:

$ apropos -s 3 Ft=size_t -a Nm~^str

Other features

  • mandoc supports HTML 5, PostScript, and PDF output via the {{code|-T}} parameter.
  • man.cgi is a CGI program designed to display manual pages on the web. OpenBSD uses it to format all its manual pages.{{man|8|man.cgi|OpenBSD}}

References

{{reflist|30em}}