import (
"fmt"
- "github.com/spf13/cobra"
- "github.com/spf13/hugo/helpers"
- "github.com/spf13/hugo/hugofs"
- jww "github.com/spf13/jwalterweatherman"
"path"
"path/filepath"
"strings"
"time"
+
+ "github.com/spf13/cobra"
+ "github.com/spf13/cobra/doc"
+ "github.com/spf13/hugo/helpers"
+ "github.com/spf13/hugo/hugofs"
+ jww "github.com/spf13/jwalterweatherman"
)
const gendocFrontmatterTemplate = `---
}
jww.FEEDBACK.Println("Generating Hugo command-line documentation in", gendocdir, "...")
- cobra.GenMarkdownTreeCustom(cmd.Root(), gendocdir, prepender, linkHandler)
+ doc.GenMarkdownTreeCustom(cmd.Root(), gendocdir, prepender, linkHandler)
jww.FEEDBACK.Println("Done.")
return nil
"strings"
"github.com/spf13/cobra"
+ "github.com/spf13/cobra/doc"
"github.com/spf13/hugo/helpers"
"github.com/spf13/hugo/hugofs"
jww "github.com/spf13/jwalterweatherman"
in the "man" directory under the current directory.`,
RunE: func(cmd *cobra.Command, args []string) error {
- header := &cobra.GenManHeader{
+ header := &doc.GenManHeader{
Section: "1",
Manual: "Hugo Manual",
Source: fmt.Sprintf("Hugo %s", helpers.HugoVersion()),
cmd.Root().DisableAutoGenTag = true
jww.FEEDBACK.Println("Generating Hugo man pages in", genmandir, "...")
- cmd.Root().GenManTree(header, genmandir)
+ doc.GenManTree(cmd.Root(), header, genmandir)
jww.FEEDBACK.Println("Done.")