ref: 9225db636e2f9b75f992013a25c0b149d6bd8b0d
dir: /media/docshelper.go/
package media import ( "github.com/gohugoio/hugo/docshelper" ) // This is is just some helpers used to create some JSON used in the Hugo docs. func init() { docsProvider := func() map[string]interface{} { docs := make(map[string]interface{}) docs["types"] = DefaultTypes return docs } docshelper.AddDocProvider("media", docsProvider) }