ref: 49e2931eb27d7bac95f89f2182380f542a08fa09
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) }