var hugoCmdV *cobra.Command
//Flags that are to be added to commands.
-var BuildWatch, IgnoreCache, Draft, Future, UglyURLs, Verbose, Logging, VerboseLog, DisableRSS, DisableSitemap, PluralizeListTitles, NoTimes bool
+var BuildWatch, IgnoreCache, Draft, Future, UglyURLs, Verbose, Logging, VerboseLog, DisableRSS, DisableSitemap, PluralizeListTitles, PreserveTaxonomyNames, NoTimes bool
var Source, CacheDir, Destination, Theme, BaseURL, CfgFile, LogFile, Editor string
//Execute adds all child commands to the root command HugoCmd and sets flags appropriately.
HugoCmd.PersistentFlags().BoolVar(&VerboseLog, "verboseLog", false, "verbose logging")
HugoCmd.PersistentFlags().BoolVar(&nitro.AnalysisOn, "stepAnalysis", false, "display memory and timing of different steps of the program")
HugoCmd.PersistentFlags().BoolVar(&PluralizeListTitles, "pluralizeListTitles", true, "Pluralize titles in lists using inflect")
+ HugoCmd.PersistentFlags().BoolVar(&PreserveTaxonomyNames, "preserveTaxonomyNames", false, `Preserve taxonomy names as written ("GĂ©rard Depardieu" vs "gerard-depardieu")`)
+
HugoCmd.Flags().BoolVarP(&BuildWatch, "watch", "w", false, "watch filesystem for changes and recreate as needed")
HugoCmd.Flags().BoolVarP(&NoTimes, "noTimes", "", false, "Don't sync modification time of files")
hugoCmdV = HugoCmd
viper.SetDefault("PygmentsUseClasses", false)
viper.SetDefault("DisableLiveReload", false)
viper.SetDefault("PluralizeListTitles", true)
+ viper.SetDefault("PreserveTaxonomyNames", false)
viper.SetDefault("FootnoteAnchorPrefix", "")
viper.SetDefault("FootnoteReturnLinkContents", "")
viper.SetDefault("NewContentEditor", "")
if hugoCmdV.PersistentFlags().Lookup("disableSitemap").Changed {
viper.Set("DisableSitemap", DisableSitemap)
}
-
+
if hugoCmdV.PersistentFlags().Lookup("verbose").Changed {
viper.Set("Verbose", Verbose)
}
viper.Set("PluralizeListTitles", PluralizeListTitles)
}
+ if hugoCmdV.PersistentFlags().Lookup("preserveTaxonomyNames").Changed {
+ viper.Set("PreserveTaxonomyNames", PreserveTaxonomyNames)
+ }
+
if hugoCmdV.PersistentFlags().Lookup("editor").Changed {
viper.Set("NewContentEditor", Editor)
}
}
type SiteInfo struct {
- BaseURL template.URL
- Taxonomies TaxonomyList
- Authors AuthorList
- Social SiteSocial
- Sections Taxonomy
- Pages *Pages
- Files []*source.File
- Menus *Menus
- Hugo *HugoInfo
- Title string
- Author map[string]interface{}
- LanguageCode string
- DisqusShortname string
- Copyright string
- LastChange time.Time
- Permalinks PermalinkOverrides
- Params map[string]interface{}
- BuildDrafts bool
- canonifyURLs bool
- paginationPageCount uint64
- Data *map[string]interface{}
+ BaseURL template.URL
+ Taxonomies TaxonomyList
+ Authors AuthorList
+ Social SiteSocial
+ Sections Taxonomy
+ Pages *Pages
+ Files []*source.File
+ Menus *Menus
+ Hugo *HugoInfo
+ Title string
+ Author map[string]interface{}
+ LanguageCode string
+ DisqusShortname string
+ Copyright string
+ LastChange time.Time
+ Permalinks PermalinkOverrides
+ Params map[string]interface{}
+ BuildDrafts bool
+ canonifyURLs bool
+ preserveTaxonomyNames bool
+ paginationPageCount uint64
+ Data *map[string]interface{}
}
// SiteSocial is a place to put social details on a site level. These are the
}
s.Info = SiteInfo{
- BaseURL: template.URL(helpers.SanitizeURLKeepTrailingSlash(viper.GetString("BaseURL"))),
- Title: viper.GetString("Title"),
- Author: viper.GetStringMap("author"),
- LanguageCode: viper.GetString("languagecode"),
- Copyright: viper.GetString("copyright"),
- DisqusShortname: viper.GetString("DisqusShortname"),
- BuildDrafts: viper.GetBool("BuildDrafts"),
- canonifyURLs: viper.GetBool("CanonifyURLs"),
- Pages: &s.Pages,
- Menus: &s.Menus,
- Params: params,
- Permalinks: permalinks,
- Data: &s.Data,
+ BaseURL: template.URL(helpers.SanitizeURLKeepTrailingSlash(viper.GetString("BaseURL"))),
+ Title: viper.GetString("Title"),
+ Author: viper.GetStringMap("author"),
+ LanguageCode: viper.GetString("languagecode"),
+ Copyright: viper.GetString("copyright"),
+ DisqusShortname: viper.GetString("DisqusShortname"),
+ BuildDrafts: viper.GetBool("BuildDrafts"),
+ canonifyURLs: viper.GetBool("CanonifyURLs"),
+ preserveTaxonomyNames: viper.GetBool("PreserveTaxonomyNames"),
+ Pages: &s.Pages,
+ Menus: &s.Menus,
+ Params: params,
+ Permalinks: permalinks,
+ Data: &s.Data,
}
}
for _, plural := range taxonomies {
s.Taxonomies[plural] = make(Taxonomy)
for _, p := range s.Pages {
- vals := p.GetParam(plural)
+ vals := p.getParam(plural, !s.Info.preserveTaxonomyNames)
weight := p.GetParam(plural + "_weight")
if weight == nil {
weight = 0
}
-
if vals != nil {
if v, ok := vals.([]string); ok {
for _, idx := range v {
x := WeightedPage{weight.(int), p}
- s.Taxonomies[plural].Add(idx, x)
+ s.Taxonomies[plural].Add(idx, x, s.Info.preserveTaxonomyNames)
}
} else if v, ok := vals.(string); ok {
x := WeightedPage{weight.(int), p}
- s.Taxonomies[plural].Add(v, x)
+ s.Taxonomies[plural].Add(v, x, s.Info.preserveTaxonomyNames)
} else {
jww.ERROR.Printf("Invalid %s in %s\n", plural, p.File.Path())
}
func (s *Site) assembleSections() {
for i, p := range s.Pages {
- s.Sections.Add(p.Section(), WeightedPage{s.Pages[i].Weight, s.Pages[i]})
+ s.Sections.Add(p.Section(), WeightedPage{s.Pages[i].Weight, s.Pages[i]}, s.Info.preserveTaxonomyNames)
}
for k := range s.Sections {
}
func (s *Site) newTaxonomyNode(t taxRenderInfo) (*Node, string) {
- base := t.plural + "/" + t.key
+ key := t.key
n := s.NewNode()
- n.Title = strings.Replace(strings.Title(t.key), "-", " ", -1)
+ if s.Info.preserveTaxonomyNames {
+ key = helpers.MakePathToLower(key)
+ // keep as is, just make sure the first char is upper
+ n.Title = helpers.FirstUpper(t.key)
+ } else {
+ n.Title = strings.Replace(strings.Title(t.key), "-", " ", -1)
+ }
+ base := t.plural + "/" + key
s.setURLs(n, base)
if len(t.pages) > 0 {
n.Date = t.pages[0].Page.Date
// RenderSectionLists renders a page for each section
func (s *Site) RenderSectionLists() error {
for section, data := range s.Sections {
-
- // section keys are lower case
+ // section keys can be lower case (depending on site.pathifyTaxonomyKeys)
// extract the original casing from the first page to get sensible titles.
sectionName := section
- if len(data) > 0 {
+ if !s.Info.preserveTaxonomyNames && len(data) > 0 {
sectionName = data[0].Page.Section()
}
layouts := s.appendThemeTemplates(
[]string{"section/" + section + ".html", "_default/section.html", "_default/list.html", "indexes/" + section + ".html", "_default/indexes.html"})
+ if s.Info.preserveTaxonomyNames {
+ section = helpers.MakePathToLower(section)
+ }
+
n := s.newSectionListNode(sectionName, section, data)
if err := s.renderAndWritePage(fmt.Sprintf("section %s", section), section, n, s.appendThemeTemplates(layouts)...); err != nil {
return err