for lang, langConf := range l {
langsMap, err := cast.ToStringMapE(langConf)
- helpers.ToLowerMap(langsMap)
if err != nil {
return nil, fmt.Errorf("Language config is not a map: %T", langConf)
viper.Set("disableRSS", false)
viper.Set("rssURI", "index.xml")
viper.Set("blackfriday",
- // TODO(bep) https://github.com/spf13/viper/issues/261
map[string]interface{}{
- strings.ToLower("plainIDAnchors"): true})
+ "plainIDAnchors": true})
viper.Set("uglyURLs", uglyURLs)
viper.Set("pluralizeListTitles", false)
viper.Set("canonifyURLs", false)
viper.Set("blackfriday",
- // TODO(bep) see https://github.com/spf13/viper/issues/261
map[string]interface{}{
- strings.ToLower("sourceRelativeLinksProjectFolder"): "/docs"})
+ "sourceRelativeLinksProjectFolder": "/docs"})
site := &Site{
Source: &source.InMemorySource{ByteSource: sources},