feat: man pages

closes #269
This commit is contained in:
Carlos Alexandro Becker 2024-07-03 13:59:11 -03:00
commit f1cf0ba785
No known key found for this signature in database
4 changed files with 40 additions and 1 deletions

27
man_cmd.go Normal file
View file

@ -0,0 +1,27 @@
package main
import (
"fmt"
"os"
mcobra "github.com/muesli/mango-cobra"
"github.com/muesli/roff"
"github.com/spf13/cobra"
)
var manCmd = &cobra.Command{
Use: "man",
Short: "Generates manpages",
SilenceUsage: true,
DisableFlagsInUseLine: true,
Hidden: true,
Args: cobra.NoArgs,
RunE: func(*cobra.Command, []string) error {
manPage, err := mcobra.NewManPage(1, rootCmd)
if err != nil {
return err
}
_, err = fmt.Fprint(os.Stdout, manPage.Build(roff.NewDocument()))
return err
},
}