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.21k stars 619 forks source link

Error from tags not being the same case #103

Closed RockyKev closed 2 years ago

RockyKev commented 3 years ago

Output conflict: multiple input files are writing to _site/tags/javascript/index. Use distinct permalink values to resolve this conflict.

I was able to identify what the error was, and recreate it by doing the following: (two separate posts. Note the Javascript and javascript)


title: TIL about flattening a JS array date: 2020-08-15 published: true tags: ['Javascript', 'array']


title: TIL All the Javascript Sandboxes date: 2020-08-07 published: true tags: ['javascript', 'sandbox']

Not sure if the solution is to make them all lowercase, or create two separate tags like Javascript and javascript.

Thank you so much!

ijager commented 3 years ago

I ran into the same error, accidentally filed it in the main repo: https://github.com/11ty/eleventy/issues/1942

zachleat commented 2 years ago

Yeah, unfortunately the best thing to say right now is to change your tags case sensitivity to match up.

Additional discussion continuing here, if you’d like to participate further! https://github.com/11ty/eleventy/issues/2462