diff --git a/doc/man_docs.go b/doc/man_docs.go index 68513cf2..74b284d2 100644 --- a/doc/man_docs.go +++ b/doc/man_docs.go @@ -77,6 +77,8 @@ func GenManTreeFromOpts(cmd *cobra.Command, opts GenManTreeOptions) error { return GenMan(cmd, &headerCopy, f) } +// GenManTreeOptions is the options for generating the man pages. +// Used only in GenManTreeFromOpts. type GenManTreeOptions struct { Header *GenManHeader Path string diff --git a/doc/md_docs.go b/doc/md_docs.go index 21ab9220..9bbfa36f 100644 --- a/doc/md_docs.go +++ b/doc/md_docs.go @@ -126,6 +126,8 @@ func GenMarkdownTree(cmd *cobra.Command, dir string) error { return GenMarkdownTreeCustom(cmd, dir, emptyStr, identity) } +// GenMarkdownTreeCustom is the the same as GenMarkdownTree, but +// with custom filePrepender and linkHandler. func GenMarkdownTreeCustom(cmd *cobra.Command, dir string, filePrepender, linkHandler func(string) string) error { for _, c := range cmd.Commands() { if !c.IsAvailableCommand() || c.IsAdditionalHelpTopicCommand() {