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