vjeantet/hugo-theme-docdock

Extra "s" in aside menu entry titles

andrescs91 opened this issue · 3 comments

When creating new content folders on the side menu, it automatically adds an extra "s" at the end of the name. I tried editing the htmls of every page, but now I see it overwrote all my changes and the extra "s" is back again. How can I fix that?

you probably want to add the following line to your config.toml:

pluralizelisttitles = false

if you put a file called _index.md in the folder then you can name the content folders manually in the index file like this:

---
title: Title for my content folder
---

@dspaxton yeah, could figure this is what was missing and it worked perfectly, thanks!!