David Jost
David Jost
I'm having the same issue. When I remove all the frontmatter from my individual `.md` files and place a `.11tydata.js` local data file in the directory, the build process throws...
@pdehaan You are right, I was missing the `else` and the return of the `title` if one is set, thanks for the tip. I corrected it, but that wasn't the...
I solved it by writing an 11ty filter, the ☍ is the permalink symbol: ```js // .eleventy.js eleventyConfig.addFilter("removeSymbol", function(value) { value.val = value.val.replace(/ ☍/g, ""); return value; }); ``` This...