Eleventy wont process post
May 26, 2022
Do not put spaces in YAML frontmatter tags
like this: tags: blog git
, instead use an array like this: tags: [blog, git]
, or as a list like this:
tags:
- blog
- git
In Eleventy this post would show up in collections.blog
or collections.git
because of its tags in the frontmatter.