![]() |
![]()
| ![]() |
![]()
NAMEharedoc - read and format Hare documentation SYNOPSISharedoc [-hanNt] [-F format] [-T tagset] [identifier|path] DESCRIPTIONharedoc reads documentation from a source file or module. If no identifier or path is supplied, documentation is read from the Hare module contained in the current working directory, or from the root of the standard library if the current working directory doesn't contain a Hare module (see hare-module(5)). If an identifier is supplied, it's first looked up as a declaration. If no suitable declaration exists, it's looked up as a module instead. The identifier may also include a trailing ::, in which case it will always be treated as a module. The identifier is resolved using the algorithm described in DEPENDENCY RESOLUTION in hare-module(5). OPTIONS-h Print the help text.
-a Show undocumented members.
-F format Select output format (one of "html" or
"tty"). The default is "tty".
-n Include file names and line numbers of symbol
declarations in the output (only applies to -Ftty).
-N Print the file name and line number of a single symbol to
stdout, then exit.
-t Disable HTML template (only applies to
-Fhtml).
-T tagset Set or unset build tags. See BUILD TAGS in
hare-module(5).
CUSTOMIZING COLORSUnless the NO_COLOR environment variable is set to a non-empty string, colors are rendered in the terminal with ANSI SGR escape sequences. These sequences can be customized with the HAREDOC_COLORS environment variable, which follows this whitespace-delimited format: HAREDOC_COLORS='key=seq
key=seq ...'
Each key=seq entry assigns a valid seq SGR sequence to a key syntax category. A valid seq must consist only of digits and semicolons, or must be a single underscore "_". Here are the initial default entries:
Any number of entries can be specified. If a seq is an underscore "_", then the sequence specified for "normal" is used, unless key is "constant", "function", "global", or "typedef", in which case the sequence specified for "primary" is used. Otherwise, if a seq is invalid, blank, empty, or absent, its corresponding default sequence is used. For example: HAREDOC_COLORS='comment=3 primary=1;4 attribute=41'
haredoc log::
ENVIRONMENTThe following environment variables affect haredoc's execution:
SEE ALSOharedoc(5)
|