Open
Description
Related docs: https://www.11ty.dev/docs/collections/
Aggregation issue for this!
Specifically, when assigning:
tags:
- JavaScript
tags:
- javascript
Right now the above two documents create two separate entries in the collections
object. This causes further issues if you have pagination templates with something like: permalink: /{{ alias.tag | slugify }}/
Both slugify
and slug
filters change the strings to lower case.
- https://github.com/11ty/eleventy/blob/d082ead95ec6d53a4dfffd901941527bb09fcdb5/src/Filters/Slugify.js
- https://github.com/11ty/eleventy/blob/d082ead95ec6d53a4dfffd901941527bb09fcdb5/src/Filters/Slug.js
This will throw a duplicate permalink error!