diff options
author | Bjørn Erik Pedersen <[email protected]> | 2019-03-28 20:59:09 +0100 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2019-03-28 20:59:09 +0100 |
commit | b6a60f718e376066456da37e7bb997a7697edc31 (patch) | |
tree | 80169f6c2208d9529a9eb569f2e71924082a5914 /output/outputFormat.go | |
parent | bfdc44964af82807fa91407132d47b6bf52704c3 (diff) | |
download | hugo-b6a60f718e376066456da37e7bb997a7697edc31.tar.gz hugo-b6a60f718e376066456da37e7bb997a7697edc31.zip |
output: Add missing JSON tag
Diffstat (limited to 'output/outputFormat.go')
-rw-r--r-- | output/outputFormat.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/output/outputFormat.go b/output/outputFormat.go index 5a794e340..9f371f856 100644 --- a/output/outputFormat.go +++ b/output/outputFormat.go @@ -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. |