MunifTanjim / minimo

Minimo - Minimalist theme for Hugo
https://minimo.netlify.app
MIT License
545 stars 220 forks source link

anchorize breaks some tags #260

Closed madhead closed 4 years ago

madhead commented 4 years ago

I have a tag with a slash in my blog: kotlin/native. preserveTaxonomyNames config parameter istrue. I noticed, that it is not rendered in content pages correctly (note that gap between commas):

image

However the tag page lists all the articles:

image

I tried to remove the anchorize function in taxonomy-list.html partial:

https://github.com/MunifTanjim/minimo/blob/ef9288460e3e6eb0ecb03556d5b26a4c8da0cd51/layouts/partials/entry/taxonomy-list.html#L11

And it seems to help:

image

Why is it needed here? Is it safe to remove it?

MunifTanjim commented 4 years ago

Fixed all of #230, #260, #264 together.

As a side-effect, now minimum Hugo version required is: 0.65

madhead commented 4 years ago

Thank you!