We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug
Templating errors in permalinks get logged as templating errors in files, even if the permalink is not defined in the file's front matter.
To Reproduce
Steps to reproduce the behavior:
Create a file named page.md with any content (doesn't need front matter).
page.md
Create a file named page.11tydata.json.
page.11tydata.json
Insert the following code in page.11tydata.json:
{ "permalink": "{{+}}" }
Run eleventy.
eleventy
Eleventy logs:
Problem writing Eleventy templates: (more in DEBUG output) > Having trouble rendering md template ./page.md
Expected behavior
Eleventy to log something like:
Problem writing Eleventy templates: (more in DEBUG output) > Having trouble parsing the permalink for ./page.md using liquid template engine
Environment:
Additional context
This really confused me, in combination with #1019.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
Templating errors in permalinks get logged as templating errors in files, even if the permalink is not defined in the file's front matter.
To Reproduce
Steps to reproduce the behavior:
Create a file named
page.md
with any content (doesn't need front matter).Create a file named
page.11tydata.json
.Insert the following code in
page.11tydata.json
:Run
eleventy
.Eleventy logs:
Expected behavior
Eleventy to log something like:
Environment:
Additional context
This really confused me, in combination with #1019.
The text was updated successfully, but these errors were encountered: