Taxonomy term with special character listing twice

Hi, I’ve got a taxonomy term which has a brackets in the title. Whenever I use it, two separate terms are listed.

The post:

—-
projects: [Math.floor(it)]
—-

The Math.floor(it)’s term page in projects/math-floor-it/_index.md:

—-
title: Math.floor(it)
—-

The listing template:

{{ $projpage := site.GetPage “/projects” }}
{{ range $projpage }}
    {{ .Permalink }}
{{ end }}

Output:

/projects/math.floorit/
/projects/math-floor-it/

Expected:

/projects/math-floor-it/

For now I’ve resorted to changing the terms folder. It would be nice if I could at least change the slug.

In /content/projects/math-floorit

---
title: Math.floor(it)
---

In frontmatter:

---
project: math-floorit
---

It’s extremely hidden in the docs:

1 Like

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