2015-11-22 11:19:54 -05:00
|
|
|
package commands
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2015-11-28 09:32:02 -05:00
|
|
|
"strings"
|
2015-11-22 11:19:54 -05:00
|
|
|
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/spf13/hugo/helpers"
|
2015-11-28 09:32:02 -05:00
|
|
|
"github.com/spf13/hugo/hugofs"
|
2015-11-22 11:19:54 -05:00
|
|
|
jww "github.com/spf13/jwalterweatherman"
|
|
|
|
)
|
|
|
|
|
2015-11-28 09:32:02 -05:00
|
|
|
var genmandir string
|
2015-11-22 11:19:54 -05:00
|
|
|
var genmanCmd = &cobra.Command{
|
2015-11-23 10:51:12 -05:00
|
|
|
Use: "man",
|
2015-11-22 11:19:54 -05:00
|
|
|
Short: "Generate man pages for the Hugo CLI",
|
|
|
|
Long: `This command automatically generates up-to-date man pages of Hugo's
|
|
|
|
command-line interface. By default, it creates the man page files
|
|
|
|
in the "man" directory under the current directory.`,
|
|
|
|
|
2015-12-02 05:42:53 -05:00
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
2015-11-22 11:19:54 -05:00
|
|
|
header := &cobra.GenManHeader{
|
|
|
|
Section: "1",
|
|
|
|
Manual: "Hugo Manual",
|
|
|
|
Source: fmt.Sprintf("Hugo %s", helpers.HugoVersion()),
|
|
|
|
}
|
2015-11-28 09:32:02 -05:00
|
|
|
if !strings.HasSuffix(genmandir, helpers.FilePathSeparator) {
|
|
|
|
genmandir += helpers.FilePathSeparator
|
|
|
|
}
|
|
|
|
if found, _ := helpers.Exists(genmandir, hugofs.OsFs); !found {
|
|
|
|
jww.FEEDBACK.Println("Directory", genmandir, "does not exist, creating...")
|
|
|
|
hugofs.OsFs.MkdirAll(genmandir, 0777)
|
|
|
|
}
|
|
|
|
cmd.Root().DisableAutoGenTag = true
|
|
|
|
|
2015-11-22 11:19:54 -05:00
|
|
|
jww.FEEDBACK.Println("Generating Hugo man pages in", genmandir, "...")
|
|
|
|
cmd.Root().GenManTree(header, genmandir)
|
2015-11-28 09:32:02 -05:00
|
|
|
|
2015-11-22 11:19:54 -05:00
|
|
|
jww.FEEDBACK.Println("Done.")
|
2015-12-02 05:42:53 -05:00
|
|
|
|
|
|
|
return nil
|
2015-11-22 11:19:54 -05:00
|
|
|
},
|
|
|
|
}
|
2015-11-28 09:32:02 -05:00
|
|
|
|
|
|
|
func init() {
|
|
|
|
genmanCmd.PersistentFlags().StringVar(&genmandir, "dir", "man/", "the directory to write the man pages.")
|
2015-12-02 04:20:55 -05:00
|
|
|
|
|
|
|
// For bash-completion
|
|
|
|
genmanCmd.PersistentFlags().SetAnnotation("dir", cobra.BashCompSubdirsInDir, []string{})
|
2015-11-28 09:32:02 -05:00
|
|
|
}
|