11ty / eleventy-base-blog

A starter repository for a blog web site using the Eleventy static site generator.

Home Page:https://eleventy-base-blog.netlify.app/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Error from tags not being the same case

RockyKev opened this issue · comments

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!

I ran into the same error, accidentally filed it in the main repo: 11ty/eleventy#1942

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! 11ty/eleventy#2462