Breaking: Aliased template syntax must be explicitly listed in template formats #3302
Labels
breaking-change
This will have to be included with a major version as it breaks backwards compatibility.
Milestone
Using https://www.11ty.dev/docs/languages/custom/#aliasing-an-existing-template-language
Any files with the
.markdown
extension were previously included ifmd
was included in your project template format keys. As we unlock the power to more complex aliases in 3.0, this is changing.You will now need to explicitly add
markdown
in--formats=markdown
or viaeleventyConfig.addTemplateFormats("markdown")
to process.markdown
files in your project.This was more important as more and things chain to the
11ty.js
template type (11ty.tsx
,11ty.jsx
,11ty.ts
, etc).The text was updated successfully, but these errors were encountered: