2015-11-23 16:19:16 -07:00
|
|
|
package doc_test
|
2015-09-08 13:02:02 -07:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/spf13/cobra"
|
2015-11-23 16:19:16 -07:00
|
|
|
"github.com/spf13/cobra/doc"
|
2015-09-08 13:02:02 -07:00
|
|
|
)
|
|
|
|
|
2017-04-01 13:45:39 -07:00
|
|
|
func ExampleGenManTree() {
|
2015-09-08 13:02:02 -07:00
|
|
|
cmd := &cobra.Command{
|
|
|
|
Use: "test",
|
|
|
|
Short: "my test program",
|
|
|
|
}
|
2015-11-23 16:19:16 -07:00
|
|
|
header := &doc.GenManHeader{
|
2015-09-08 13:02:02 -07:00
|
|
|
Title: "MINE",
|
|
|
|
Section: "3",
|
|
|
|
}
|
2021-02-07 17:08:50 -07:00
|
|
|
cobra.CheckErr(doc.GenManTree(cmd, header, "/tmp"))
|
2015-09-08 13:02:02 -07:00
|
|
|
}
|
|
|
|
|
2017-04-01 13:45:39 -07:00
|
|
|
func ExampleGenMan() {
|
2015-09-08 13:02:02 -07:00
|
|
|
cmd := &cobra.Command{
|
|
|
|
Use: "test",
|
|
|
|
Short: "my test program",
|
|
|
|
}
|
2015-11-23 16:19:16 -07:00
|
|
|
header := &doc.GenManHeader{
|
2015-09-08 13:02:02 -07:00
|
|
|
Title: "MINE",
|
|
|
|
Section: "3",
|
|
|
|
}
|
|
|
|
out := new(bytes.Buffer)
|
2021-02-07 17:08:50 -07:00
|
|
|
cobra.CheckErr(doc.GenMan(cmd, header, out))
|
2015-09-08 13:02:02 -07:00
|
|
|
fmt.Print(out.String())
|
|
|
|
}
|