mango-doc

command module
v0.0.0-...-a80d2da Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 2, 2024 License: BSD-3-Clause Imports: 16 Imported by: 0

README

mango-doc

Forked mango-doc originally written by jimmyfrasche, to generate man-pages from golang doc comments.

Build

Install

Install using the command:

go install github.com/dherbst/mango-doc@latest

Documentation

Overview

Create a man page from a Go package's source file's documentation.

Mango-Doc generates man files from the source of a Go package. If the package is main, it creates a section 1 man page. Otherwise, it creates a section 3 man page.

Mango-Doc is a tool similar to godoc(1) and uses the same conventions and information so that documentation will look the same in both. Further, Mango-Doc uses no special markup. The text is formatted by simple rules, described in FORMATTING below. The input is the comments and AST of the Go package. The output is raw troff markup (compatiable with nroff and groff) dumped to stdout for pipelining, see EXAMPLES.

For section 1 man pages, Mango-Doc bases the OPTIONS section on the use of flag(3) and a special comment. It takes

var file = flag.String("source", "", "Set source file")
var toggle = flag.Bool("t", false, "Toggle mode")
var banner = flag.Bool("title", "Hello", "Set banner")

and produces:

-source file
-toggle
-banner = Hello

Extraction of this information will not work if the flag package is renamed on import and it can only extract flags defined with flag.Type and not those defined with flag.TypeVar in the init() function. Additional information may be given with a comment like

//Usage: %name %flags [optional-arg] required-arg

The "Usage:" part is mandatory. %name and %flags (or %flag) exist only to make the intent clear to a reader unfamiliar with mango-doc(1). Both may be used together, each may be used separately, and neither are required.

EXAMPLES

Format package in current directory with nroff:

mango-doc | nroff -man > name.section

Format package in current directory as a ps file with groff:

mango-doc | groff -man > name.section.ps

Format package in current directory as a pdf:

mango-doc | groff -man | ps2pdf - name.section.pdf

Format ogle(3), and ogle(1), which exist in the same directory:

mango-doc $GOROOT/src/pkg/exp/ogle | nroff -man > ogle.3
mango-doc -package main $GOROOT/src/pkg/exp/ogle | nroff -man > ogle.1

Format your package in a makefile:

mango-doc -import $TARG $GOFILES | nroff -man > name.section

FORMATTING

An all caps word on a line by itself, followed and preceded by a blank like denotes a new section.

Two consecutive newlines start a new paragraph.

Indented paragraphs, with one tab or four spaces, maintain their relative indentation (a uniform, initial indent is ignored) and no additional formatting is applied

Words beginning with a hyphen are assumed to be command line switches, and they, including the hypen, are bolded. Words ending with (.) where . is a valid (even if obscure) man page section are formatted with the word but not the (.) in bold. In addition, each word is added to the SEE ALSO section.

HEURISTICS

If no directory or files are specified, Mango-Doc uses the current working directory. If there are multiple packages in the input directory, any package named 'documentation' is used as the package level documentation. If there is no 'documentation' package or there are still multiple packages after taking 'documentation' out of play, Mango-Doc will use the package with the same name as the input directory. If this is incorrect, or you wish to generate man pages for multiple packages in one directory you can select them individually with the -package flag.

The name of the man page is the name of the package for section 3 man pages and the name of the file that contains func main() for section 1 man pages. This can be overridden with the -name flag, but only for section 1 pages.

For man 3 pages, the import path defaults to the name of the package. It can be overridden with the -import flag and the

If the -version flag is not used, Mango-Doc searches the AST for a const or var declaration named Version. Failing that, it uses today's date as the version.

If the -manual flag is not used, it defaults to "User Commands" for man 1 pages and to "Go Packages" for man 3 pages, respectively.

Sections in the comments, or specified by the -include or -sections flags, are in the same order as they appear in the comments, with the exception that DIAGNOSTICS, ENVIRONMENT, and FILES section appear first, and in that order; and that HISTORY appears after the SEE ALSO section.

In man 1 pages, the user-defined sections appear between the OPTIONS and BUGS sections. In man 3 pages, they appear after the DESCRIPTION section.

Notes

Bugs

  • Quotation marks are all wrong in postscript output.

  • Need to special case flag.Var to make it format properly.

  • No way to group short/long name option pairs.

  • Does not render RHS of consts or vars for section 3.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL