mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-25 22:00:58 +02:00
all: Document the Output Formats feature
This commit also adds a new command, docshelper, with some utility funcs that adds a JSON datafiles to /docs/data that would be a pain to create and maintain by hand. Fixes #3242
This commit is contained in:
@@ -14,6 +14,7 @@
|
||||
package output
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"sort"
|
||||
"strings"
|
||||
@@ -299,6 +300,17 @@ func decode(mediaTypes media.Types, input, output interface{}) error {
|
||||
return decoder.Decode(input)
|
||||
}
|
||||
|
||||
func (t Format) BaseFilename() string {
|
||||
return t.BaseName + "." + t.MediaType.Suffix
|
||||
func (f Format) BaseFilename() string {
|
||||
return f.BaseName + "." + f.MediaType.Suffix
|
||||
}
|
||||
|
||||
func (f Format) MarshalJSON() ([]byte, error) {
|
||||
type Alias Format
|
||||
return json.Marshal(&struct {
|
||||
MediaType string
|
||||
Alias
|
||||
}{
|
||||
MediaType: f.MediaType.String(),
|
||||
Alias: (Alias)(f),
|
||||
})
|
||||
}
|
||||
|
Reference in New Issue
Block a user