Added `s` to title in menu

Hi, I noticed that for all menu names s is added on the end.

menu:
  main:
  - name: Wycieczki
    pageRef: /wycieczki
    weight: 10
  - name: Modele
    pageRef: /modele
    weight: 20
  - name: Rower
    pageRef: /rower
    weight: 30

But then I can see that for example instead of Wycieczki I see: Wycieczkis
source looks like:

<h1 class="f2 f-subheadline-l fw2 light-silver mb0 lh-title">
          Wycieczkis
</h1>

Search the documentation for “pluralizeListTitles”.

Thank you @jmooring
added following: pluralizelisttitles: "false" to hugo.yaml and now all fine :slight_smile:

1 Like

Although we cast string values to boolean, you should get into the habit of:

pluralizelisttitles: false

No quotes for boolean values.

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.