Eric MORAND
Eric MORAND
Whenever we try to spread an integer, we get this error about the `merge` filter. https://twigfiddle.com/ud26jf > The merge filter only works with arrays or "Traversable", got "integer" for argument...
According to the [documentation of the autoescape tag](https://twig.symfony.com/doc/3.x/tags/autoescape.html): > Twig is smart enough to not escape an already escaped value by the [escape](https://twig.symfony.com/doc/3.x/filters/escape.html) filter. But, when testing TwigPHP, it seems...
Consider the following template: ```twig {% set br = "" %} {% autoescape false %} {% autoescape 'html' %} {{ true ? "" : br }} {{ true ? (true...
Consider the following template: ```twig {{ (br == "") ? "true" : "false" }} {{ (include("partial.twig") == "") ? "true" : "false" }} ``` With `partial.twig` being: ```twig {{ br...
According to the Twig documentation, whenever something generates some output, it should be a function: > Most of the time though, a tag is not needed: > > * If...
While using TwigPHP to parse a Twig template and apply some changes to the AST before it is sent to the compiler, we discovered that the compiler changes somes attributes...
This is a follow-up to the conversation that happened on https://github.com/streamich/memfs/pull/585. To summarize: as of today, `memfs` exports the `Volume` class as a `const` value, instead of a class. This...
## Link to bug demonstration repository Twing is plagued by this issue: we have a module named `src/lib/helpers/get-test.ts` which contains the `getTest` helper method that returns a Twing test from...
Awesome Contribution Checklist: - [x] I have read, and re-read the [Contributing Guidelines](https://github.com/rollup/awesome/blob/master/.github/CONTRIBUTING.md) - [x] I have searched to ensure the suggested item doesn't exist on this list - [x]...
Awesome Contribution Checklist: - [X] I have read, and re-read the [Contributing Guidelines](https://github.com/rollup/awesome/blob/master/.github/CONTRIBUTING.md) - [X] I have searched to ensure the suggested item doesn't exist on this list - [X]...