diff options
author | Bjørn Erik Pedersen <[email protected]> | 2017-03-23 17:31:05 +0100 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2017-03-27 15:43:56 +0200 |
commit | 8bcc08e3b0ddd5762101bb2f061e0be04ecd8d57 (patch) | |
tree | d2550507b4dbb96509e638d1637d297359089edc /output/outputFormat.go | |
parent | dbb83f925a7cb256b69b158e2caf0d99e3c7c5e6 (diff) | |
download | hugo-8bcc08e3b0ddd5762101bb2f061e0be04ecd8d57.tar.gz hugo-8bcc08e3b0ddd5762101bb2f061e0be04ecd8d57.zip |
media, output: Add Calendar type
Diffstat (limited to 'output/outputFormat.go')
-rw-r--r-- | output/outputFormat.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/output/outputFormat.go b/output/outputFormat.go index 3812030d1..efc0cd85f 100644 --- a/output/outputFormat.go +++ b/output/outputFormat.go @@ -31,6 +31,15 @@ var ( Rel: "amphtml", } + CalendarType = Format{ + Name: "Calendar", + MediaType: media.CalendarType, + IsPlainText: true, + Protocol: "webcal://", + BaseName: "index", + Rel: "alternate", + } + CSSType = Format{ Name: "CSS", MediaType: media.CSSType, |