update to use cobra's sub package doc
authorSteve Francia <steve.francia@gmail.com>
Thu, 24 Dec 2015 14:47:00 +0000 (09:47 -0500)
committerSteve Francia <steve.francia@gmail.com>
Thu, 24 Dec 2015 15:31:44 +0000 (10:31 -0500)
commands/gendoc.go
commands/genman.go

index eaea51a935b875454f602f05c702227a56663da0..0f65e7dc921b8ece7e241df8b801631b34139af8 100644 (file)
@@ -15,14 +15,16 @@ package commands
 
 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 = `---
@@ -67,7 +69,7 @@ for rendering in Hugo.`,
                }
 
                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
index ab2616aa21834c01e1fd9a948e8646702d1f473b..e12d02773e949de0ca49e89c27894b08af0b8697 100644 (file)
@@ -18,6 +18,7 @@ import (
        "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"
@@ -32,7 +33,7 @@ command-line interface.  By default, it creates the man page files
 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()),
@@ -47,7 +48,7 @@ in the "man" directory under the current directory.`,
                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.")