docs package - github.com/urfave/cli-docs/v3 - Go Packages
- Variables
- func ToMan(cmd *cli.Command) (string, error)
- func ToManWithSection(cmd *cli.Command, sectionNumber int) (string, error)
- func ToMarkdown(cmd *cli.Command) (string, error)
- func ToTabularMarkdown(cmd *cli.Command, appPath string) (string, error)
- func ToTabularToFileBetweenTags(cmd *cli.Command, appPath, filePath string, startEndTags ...string) error
This section is empty.
ToMan creates a man page string for the `*cli.Command` The function errors if either parsing or writing of the string fails.
ToMan creates a man page string with section number for the `*cli.Command` The function errors if either parsing or writing of the string fails.
ToMarkdown creates a markdown string for the `*cli.Command` The function errors if either parsing or writing of the string fails.
ToTabularMarkdown creates a tabular markdown documentation for the `*cli.Command`. The function errors if either parsing or writing of the string fails.
ToTabularToFileBetweenTags creates a tabular markdown documentation for the `*App` and updates the file between the tags in the file. The function errors if either parsing or writing of the string fails.
This section is empty.