summaryrefslogtreecommitdiffstats
path: root/output/outputType.go
diff options
context:
space:
mode:
Diffstat (limited to 'output/outputType.go')
-rw-r--r--output/outputType.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/output/outputType.go b/output/outputType.go
index 222494b09..cf5fff76e 100644
--- a/output/outputType.go
+++ b/output/outputType.go
@@ -21,11 +21,13 @@ var (
HTMLType = Type{
Name: "HTML",
MediaType: media.HTMLType,
+ BaseName: "index",
}
RSSType = Type{
Name: "RSS",
MediaType: media.RSSType,
+ BaseName: "index",
}
)
@@ -42,7 +44,16 @@ type Type struct {
// Must be set to a value when there are two or more conflicting mediatype for the same resource.
Path string
+ // The base output file name used when not using "ugly URLs", defaults to "index".
+ BaseName string
+
+ // The protocol to use, i.e. "webcal://". Defaults to the protocol of the baseURL.
+ Protocol string
+
// IsPlainText decides whether to use text/template or html/template
// as template parser.
IsPlainText bool
+
+ // Enable to ignore the global uglyURLs setting.
+ NoUgly bool
}