ref: 4a366fcfee24b3a5a5045b16c3b87b76147adf5e
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) }