mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-25 15:39:37 -05:00
4176f038df
* include all subcommands Signed-off-by: Fabian Kammel <fk@edgeless.systems>
46 lines
1.1 KiB
Go
46 lines
1.1 KiB
Go
// Clidocgen generates a Markdown page describing all CLI commands.
|
|
package main
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"regexp"
|
|
|
|
"github.com/edgelesssys/constellation/cli/cmd"
|
|
"github.com/spf13/cobra"
|
|
"github.com/spf13/cobra/doc"
|
|
)
|
|
|
|
var seeAlsoRegexp = regexp.MustCompile(`(?s)### SEE ALSO\n.+?\n\n`)
|
|
|
|
func main() {
|
|
cobra.EnableCommandSorting = false
|
|
rootCmd := cmd.NewRootCmd()
|
|
rootCmd.DisableAutoGenTag = true
|
|
|
|
// Generate Markdown for all commands.
|
|
cmdList := &bytes.Buffer{}
|
|
body := &bytes.Buffer{}
|
|
for _, c := range allSubCommands(rootCmd) {
|
|
name := c.Name()
|
|
fmt.Fprintf(cmdList, "* [%v](#constellation-%v): %v\n", name, name, c.Short)
|
|
if err := doc.GenMarkdown(c, body); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
// Remove "see also" sections. They list parent and child commands, which is not interesting for us.
|
|
cleanedBody := seeAlsoRegexp.ReplaceAll(body.Bytes(), nil)
|
|
|
|
fmt.Printf("Commands:\n\n%s\n%s", cmdList, cleanedBody)
|
|
}
|
|
|
|
func allSubCommands(cmd *cobra.Command) []*cobra.Command {
|
|
var all []*cobra.Command
|
|
for _, c := range cmd.Commands() {
|
|
all = append(all, c)
|
|
all = append(all, allSubCommands(c)...)
|
|
}
|
|
return all
|
|
}
|