media: Add JSON tags to Type
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 31 Jul 2017 14:41:10 +0000 (16:41 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 31 Jul 2017 14:41:10 +0000 (16:41 +0200)
See https://github.com/gohugoio/hugoDocs/issues/114

media/mediaType.go

index 2f238ba2397895b989fa4fe1f26d9b4a89a9d470..59de655b612539159ef5ba1f2343a9b3ab4431dd 100644 (file)
@@ -33,10 +33,10 @@ const (
 // If suffix is not provided, the sub type will be used.
 // See // https://en.wikipedia.org/wiki/Media_type
 type Type struct {
-       MainType  string // i.e. text
-       SubType   string // i.e. html
-       Suffix    string // i.e html
-       Delimiter string // defaults to "."
+       MainType  string `json:"mainType"`  // i.e. text
+       SubType   string `json:"subType"`   // i.e. html
+       Suffix    string `json:"suffix"`    // i.e html
+       Delimiter string `json:"delimiter"` // defaults to "."
 }
 
 // FromTypeString creates a new Type given a type sring on the form MainType/SubType and