eleventy
eleventy copied to clipboard
A simpler site generator. Transforms a directory of templates (of varying types) into HTML.
### Is your feature request related to a problem? Please describe. When using `.11ty.js` templates, shortcodes are accessed using `this` (as per [docs](https://www.11ty.dev/docs/shortcodes/)). It is no secret that `this` can...
Resolves https://github.com/11ty/eleventy/issues/3376. This PR adds a `loader` option for the `Eleventy` class and a `--loader` command line flag. The value must be either `"esm"` (to force ESM mode), `"cjs"` (to...
Resolves https://github.com/11ty/eleventy/issues/3415. This PR adds a flag to run event handlers sequentially, instead of in parallel. This is to avoid issues with plugins interfering with one another if they are...
### Operating system macOS Sonoma 14.6.1 ### Eleventy 3.0.0-beta.1 ### Describe the bug Eleventy should not fire its `eleventy.after` (and probably also not its `eleventy.before`) event handlers in parallel. This...
### Operating system macOS Sonoma 14.5 ### Eleventy 2.0.1 ### Describe the bug I am new to the library and have a clean install, my folder structure is: - _includes...
### Operating system macOS 14.5 ### Eleventy 2.0.1 ### Describe the bug Sometimes my website ends up in a weird loop of rebuilds when developing locally. Looking at the logs...
The second argument in `.addPreprocessor()` seems to be designed to allow `"*"` to match all templating languages, but gets mapped to `".*"` before the actual comparison to `"*"` happens. As...
### Is your feature request related to a problem? Please describe. If I want to add a link in a template, linking to another template in the same directory, using...
Lots of small tweaks. Usually to make loops easier to read, and sometimes to replace a loop with something that is (hopefully) easier or faster to read.
### Operating system MacOS Sonoma 14.6 ### Eleventy 3.0.0-beta.1 ### Describe the bug In incremental mode i am getting an error `TemplateContentUnrenderedTemplateError: Tried to use templateContent on unrendered template`, when...