output: Fix golint godoc issues
authorCameron Moore <moorereason@gmail.com>
Thu, 6 Sep 2018 22:00:19 +0000 (17:00 -0500)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 7 Sep 2018 06:25:51 +0000 (08:25 +0200)
output/layout_base.go
output/outputFormat.go

index d3c52347c64429bd60a4724fb7f6f68c156c83a5..b8930df823270bb1d71bffbd103bab1a15ba8eb2 100644 (file)
@@ -30,6 +30,7 @@ var (
        goTemplateInnerMarkers  = [][]byte{[]byte("{{define"), []byte("{{ define"), []byte("{{- define"), []byte("{{-define")}
 )
 
+// TemplateNames represents a template naming scheme.
 type TemplateNames struct {
        // The name used as key in the template map. Note that this will be
        // prefixed with "_text/" if it should be parsed with text/template.
@@ -39,6 +40,7 @@ type TemplateNames struct {
        MasterFilename  string
 }
 
+// TemplateLookupDescriptor describes the template lookup configuration.
 type TemplateLookupDescriptor struct {
        // The full path to the site root.
        WorkingDir string
@@ -62,6 +64,7 @@ func isShorthCodeOrPartial(name string) bool {
        return strings.HasPrefix(name, "shortcodes/") || strings.HasPrefix(name, "partials/")
 }
 
+// CreateTemplateNames returns a TemplateNames object for a given template.
 func CreateTemplateNames(d TemplateLookupDescriptor) (TemplateNames, error) {
 
        name := filepath.ToSlash(d.RelPath)
index 30bf903b4111bd9ce0beb248e9b753fb2ed3bef2..ec1838b3944c221f965de2a3b646d94b522204b8 100644 (file)
@@ -71,10 +71,8 @@ type Format struct {
        NotAlternative bool `json:"notAlternative"`
 }
 
+// An ordered list of built-in output formats.
 var (
-       // An ordered list of built-in output formats
-       //
-       // See https://www.ampproject.org/learn/overview/
        AMPFormat = Format{
                Name:      "AMP",
                MediaType: media.HTMLType,
@@ -82,6 +80,7 @@ var (
                Path:      "amp",
                Rel:       "amphtml",
                IsHTML:    true,
+               // See https://www.ampproject.org/learn/overview/
        }
 
        CalendarFormat = Format{
@@ -150,6 +149,7 @@ var (
        }
 )
 
+// DefaultFormats contains the default output formats supported by Hugo.
 var DefaultFormats = Formats{
        AMPFormat,
        CalendarFormat,
@@ -166,6 +166,7 @@ func init() {
        sort.Sort(DefaultFormats)
 }
 
+// Formats is a slice of Format.
 type Formats []Format
 
 func (formats Formats) Len() int           { return len(formats) }
@@ -330,10 +331,12 @@ func decode(mediaTypes media.Types, input, output interface{}) error {
        return decoder.Decode(input)
 }
 
+// BaseFilename returns the base filename of formats.
 func (formats Format) BaseFilename() string {
        return formats.BaseName + formats.MediaType.FullSuffix()
 }
 
+// MarshalJSON returns the JSON encoding of formats.
 func (formats Format) MarshalJSON() ([]byte, error) {
        type Alias Format
        return json.Marshal(&struct {