11ty / eleventy-base-blog

A starter repository for a blog web site using the Eleventy static site generator.
https://eleventy-base-blog.netlify.app/
MIT License
1.19k stars 609 forks source link

why are the tags title case #172

Open authenyoo opened 5 months ago

authenyoo commented 5 months ago

when i click o n them its not title case but on posts its title case i wrote it lowercase hel p.

lusareal commented 3 months ago

try this https://www.11ty.dev/docs/filters/

ashleyross commented 1 week ago

@authenyoo This is because of the text-transform: capitalize; CSS style applied to .post-tag in index.css: https://github.com/11ty/eleventy-base-blog/blob/3ceaafc400dfa44001af2457d207ff25e0ca8010/public/css/index.css#L228

Removing it from your index.css will fix this for you.