Module Cmdliner_manpage

Manpages.

See Cmdliner.Manpage.

type block = [
  1. | `S of string
  2. | `P of string
  3. | `Pre of string
  4. | `I of string * string
  5. | `Noblank
  6. | `Blocks of block list
]
val escape : string -> string

escape s escapes s from the doc language.

type title = string * int * string * string * string
type t = title * block list
type xref = [
  1. | `Main
  2. | `Cmd of string
  3. | `Tool of string
  4. | `Page of string * int
]

Standard section names

val s_name : string
val s_synopsis : string
val s_description : string
val s_commands : string
val s_arguments : string
val s_options : string
val s_common_options : string
val s_exit_status : string
val s_environment : string
val s_files : string
val s_bugs : string
val s_examples : string
val s_authors : string
val s_see_also : string
val s_none : string

Section maps

Used for handling the merging of metadata doc strings.

type smap
val smap_of_blocks : block list -> smap
val smap_to_blocks : smap -> block list
val smap_has_section : smap -> sec:string -> bool
val smap_append_block : smap -> sec:string -> block -> smap

smap_append_block smap sec b appends b at the end of section sec creating it at the right place if needed.

Content boilerplate

val s_exit_status_intro : block
val s_environment_intro : block

Output

type format = [
  1. | `Auto
  2. | `Pager
  3. | `Plain
  4. | `Groff
]
val print : ?errs:Stdlib.Format.formatter -> ?subst:(string -> string option) -> format -> Stdlib.Format.formatter -> t -> unit

Printers and escapes used by Cmdliner module

val subst_vars : errs:Stdlib.Format.formatter -> subst:(string -> string option) -> Stdlib.Buffer.t -> string -> string

subst b ~subst s, using b, substitutes in s variables of the form "$(doc)" by their subst definition. This leaves escapes and markup directives $(markup,…) intact.

  • raises Invalid_argument

    in case of illegal syntax.

val doc_to_plain : errs:Stdlib.Format.formatter -> subst:(string -> string option) -> Stdlib.Buffer.t -> string -> string

doc_to_plain b ~subst s using b, substitutes in s variables by their subst definition and renders cmdliner directives to plain text.

  • raises Invalid_argument

    in case of illegal syntax.