ref: 3efa1d81219a6e7b41c9676e9cab446741f69055
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) }