import "k8s.io/kubernetes/vendor/github.com/spf13/cobra/doc"
man_docs.go md_docs.go rest_docs.go util.go yaml_docs.go
GenMan will generate a man page for the given command and write it to w. The header argument may be nil, however obviously w may not.
GenManTree will generate a man page for this command and all descendants in the directory given. The header may be nil. This function may not work correctly if your command names have `-` in them. If you have `cmd` with two subcmds, `sub` and `sub-third`, and `sub` has a subcommand called `third` it is undefined which help output will be in the file `cmd-sub-third.1`.
func GenManTreeFromOpts(cmd *cobra.Command, opts GenManTreeOptions) error
GenManTreeFromOpts generates a man page for the command and all descendants. The pages are written to the opts.Path directory.
GenMarkdown creates markdown output.
GenMarkdownCustom creates custom markdown output.
GenMarkdownTree will generate a markdown page for this command and all descendants in the directory given. The header may be nil. This function may not work correctly if your command names have `-` in them. If you have `cmd` with two subcmds, `sub` and `sub-third`, and `sub` has a subcommand called `third`, it is undefined which help output will be in the file `cmd-sub-third.1`.
func GenMarkdownTreeCustom(cmd *cobra.Command, dir string, filePrepender, linkHandler func(string) string) error
GenMarkdownTreeCustom is the the same as GenMarkdownTree, but with custom filePrepender and linkHandler.
GenReST creates reStructured Text output.
GenReSTCustom creates custom reStructured Text output.
GenReSTTree will generate a ReST page for this command and all descendants in the directory given. This function may not work correctly if your command names have `-` in them. If you have `cmd` with two subcmds, `sub` and `sub-third`, and `sub` has a subcommand called `third`, it is undefined which help output will be in the file `cmd-sub-third.1`.
func GenReSTTreeCustom(cmd *cobra.Command, dir string, filePrepender func(string) string, linkHandler func(string, string) string) error
GenReSTTreeCustom is the the same as GenReSTTree, but with custom filePrepender and linkHandler.
GenYaml creates yaml output.
GenYamlCustom creates custom yaml output.
GenYamlTree creates yaml structured ref files for this command and all descendants in the directory given. This function may not work correctly if your command names have `-` in them. If you have `cmd` with two subcmds, `sub` and `sub-third`, and `sub` has a subcommand called `third` it is undefined which help output will be in the file `cmd-sub-third.1`.
func GenYamlTreeCustom(cmd *cobra.Command, dir string, filePrepender, linkHandler func(string) string) error
GenYamlTreeCustom creates yaml structured ref files.
type GenManHeader struct { Title string Section string Date *time.Time Source string Manual string // contains filtered or unexported fields }
GenManHeader is a lot like the .TH header at the start of man pages. These include the title, section, date, source, and manual. We will use the current time if Date is unset and will use "Auto generated by spf13/cobra" if the Source is unset.
type GenManTreeOptions struct { Header *GenManHeader Path string CommandSeparator string }
GenManTreeOptions is the options for generating the man pages. Used only in GenManTreeFromOpts.
Package doc imports 13 packages (graph). Updated 2020-11-24. Refresh now. Tools for package owners.