Skip to content

Commit

Permalink
output: Add missing JSON tag
Browse files Browse the repository at this point in the history
  • Loading branch information
bep committed Mar 28, 2019
1 parent bfdc449 commit b6a60f7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions docs/data/docs.json
Expand Up @@ -1519,7 +1519,7 @@
"isHTML": true,
"noUgly": false,
"notAlternative": false,
"Permalinkable": true
"permalinkable": true
},
{
"MediaType": "text/css",
Expand All @@ -1542,7 +1542,7 @@
"isHTML": false,
"noUgly": false,
"notAlternative": true,
"Permalinkable": false
"permalinkable": false
},
{
"MediaType": "text/csv",
Expand All @@ -1565,7 +1565,7 @@
"isHTML": false,
"noUgly": false,
"notAlternative": false,
"Permalinkable": false
"permalinkable": false
},
{
"MediaType": "text/calendar",
Expand All @@ -1588,7 +1588,7 @@
"isHTML": false,
"noUgly": false,
"notAlternative": false,
"Permalinkable": false
"permalinkable": false
},
{
"MediaType": "text/html",
Expand All @@ -1611,7 +1611,7 @@
"isHTML": true,
"noUgly": false,
"notAlternative": false,
"Permalinkable": true
"permalinkable": true
},
{
"MediaType": "application/json",
Expand All @@ -1634,7 +1634,7 @@
"isHTML": false,
"noUgly": false,
"notAlternative": false,
"Permalinkable": false
"permalinkable": false
},
{
"MediaType": "text/plain",
Expand All @@ -1657,7 +1657,7 @@
"isHTML": false,
"noUgly": false,
"notAlternative": false,
"Permalinkable": false
"permalinkable": false
},
{
"MediaType": "application/rss+xml",
Expand All @@ -1680,7 +1680,7 @@
"isHTML": false,
"noUgly": true,
"notAlternative": false,
"Permalinkable": false
"permalinkable": false
},
{
"MediaType": "application/xml",
Expand All @@ -1703,7 +1703,7 @@
"isHTML": false,
"noUgly": true,
"notAlternative": false,
"Permalinkable": false
"permalinkable": false
}
],
"layouts": [
Expand Down
2 changes: 1 addition & 1 deletion output/outputFormat.go
Expand Up @@ -77,7 +77,7 @@ type Format struct {
// as you probably don't want to link back to the RSS version of a page, as an
// example. AMP would, however, be a good example of an output format where this
// behaviour is wanted.
Permalinkable bool
Permalinkable bool `json:"permalinkable"`
}

// An ordered list of built-in output formats.
Expand Down

0 comments on commit b6a60f7

Please sign in to comment.