mandoc

Source: Wikipedia, the free encyclopedia.
mandoc
Initial releaseNovember 2008
Stable release
1.14.6 / September 23, 2021; 2 years ago (2021-09-23)[1]
Repository
Written inC
TypeTypesetting
LicenseISC license
Websitemandoc.bsd.lv

mandoc (historically called mdocml) is a utility used for formatting

type-setting
.

mandoc is mainly used to format the mdoc manuals used in the

roff commands occasionally intermixed with the man macros.[2][1]: 1.14.5  It does not support other macro sets such as mm and ms, or any typesetting features like hyphenation, fonts and alignment.[2]: compatibility  Simple styling such as bold and italics are supported, but italicized text is replaced by underlined text on the terminal.[3][4]

mandoc has built-in support for the troff soelim (inclusion) preprocessor and partial built-in support for

: 1.4.1 

History

Development began in November 2008 specifically to produce

Fedora.[13] Its advantages were stated as high speed,[14]
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.[15]

 # 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.[15]

 # Page wide-character manual to the terminal.
 $ mandoc -l foo.jp.1

The included apropos implementation can use semantic information in search:[16]

 # 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 -T parameter.[15]
  • man.cgi is a CGI program designed to display manual pages on the web. OpenBSD uses it to format all its manual pages.[17]

References

  1. ^ a b c "Release notes". September 23, 2021.
  2. ^ a b roff(7) – OpenBSD Miscellaneous Information Manual
  3. ^ "Italics and colour in manual pages on a nosh user-space virtual terminal". jdebp.eu.
  4. ^ mandoc(1) – FreeBSD General Commands Manual. "Font styles are applied by using back-spaced encoding..."
  5. ^ "Source history". Mdocml.bsd.lv. Retrieved 2010-12-18.
  6. ^ "AsiaBSDCon 2009: Deprecating groff for BSD manual display". 2009.asiabsdcon.org. 2009-03-15. Retrieved 2010-12-18.
  7. ^ "Deprecating groff for BSD manual display" (PDF). Retrieved 2010-12-18.
  8. ^ "Video of AsiaBSDCon presentation". Youtube.com. Retrieved 2010-12-18.
  9. ^ "Google Summer of Code: mandoc_ps". Netbsd-soc.sourceforge.net. Retrieved 2010-12-18.
  10. ^ "NetBSD Blog". Blog.netbsd.org. 2010-08-11. Retrieved 2010-12-18.
  11. ^ "OpenBSD 4.8". Openbsd.org. 2010-11-01. Retrieved 2010-12-18.
  12. ^ "groff deleted from tree".
  13. ^ "Availability of the mandoc toolset". Mdocml.bsd.lv.
  14. ^ Unangst, Ted. "mandoc speed benchmarks".
  15. ^ a b c mandoc(1) – OpenBSD General Commands Manual
  16. ^ apropos(1) – OpenBSD General Commands Manual
  17. ^ man.cgi(8) – OpenBSD System Manager's Manual

External links

This page is based on the copyrighted Wikipedia article: Mandoc. Articles is available under the CC BY-SA 3.0 license; additional terms may apply.Privacy Policy