Make "Indexes" the alias and "Taxonomies" the canonical name
authorAnthony Fok <foka@debian.org>
Mon, 16 Feb 2015 20:14:47 +0000 (13:14 -0700)
committerAnthony Fok <foka@debian.org>
Mon, 16 Feb 2015 20:16:17 +0000 (13:16 -0700)
... rather than the other way around.
Discovered thanks to the new `hugo config` command.

commands/hugo.go

index 62f5f3d01fbf4bd3dea11d85869e955fcd4a21b2..2a3f99b1eae203623a57adcecb7548c23d22c99b 100644 (file)
@@ -109,7 +109,7 @@ func InitializeConfig() {
                jww.ERROR.Println("Unable to locate Config file. Perhaps you need to create a new site. Run `hugo help new` for details")
        }
 
-       viper.RegisterAlias("taxonomies", "indexes")
+       viper.RegisterAlias("indexes", "taxonomies")
 
        viper.SetDefault("Watch", false)
        viper.SetDefault("MetaDataFormat", "toml")
@@ -127,7 +127,7 @@ func InitializeConfig() {
        viper.SetDefault("UglyUrls", false)
        viper.SetDefault("Verbose", false)
        viper.SetDefault("CanonifyUrls", false)
-       viper.SetDefault("Indexes", map[string]string{"tag": "tags", "category": "categories"})
+       viper.SetDefault("Taxonomies", map[string]string{"tag": "tags", "category": "categories"})
        viper.SetDefault("Permalinks", make(hugolib.PermalinkOverrides, 0))
        viper.SetDefault("Sitemap", hugolib.Sitemap{Priority: -1})
        viper.SetDefault("PygmentsStyle", "monokai")