Malte Janz
Malte Janz
The first attribute ordering implementation keeps the original order of the attributes on tags that contain any twig syntax: https://github.com/MalteJanz/ludtwig/issues/33 This is a follow up issue to improve the situation....
The CLI option `-o` which is mainly used for local testing has currently a critical bug: ``` ./ludtwig -o ./../../output/ ../../fixtures/migration ``` results in the writer writing to the following...
As ludtwig doesn't know about any special tags it is very likely that it removes the whitespaces, tabs, and new lines inside of `` tags. These tags are used to...
This is still WIP because the ergonomics of the image are not final (the way you can use it). Also it still needs to be added into the release pipeline....
It was requested multiple times to provide a docker container. This makes it easier to run ludtwig anywhere and also allows for easy integration into CI/CD pipelines. This issue should...
Only check `class` attributes (not `:class` attributes which contain javascript). Check for: - `-` as seperator between words - only zero or one time `__` as seperator - only zero...
Find tag attributes with names like `v-on:`, `v-bind:` and `v-slot:` and suggest to replace them with `@`, `:` and `#`.
Check the twig block names for `snake_case`
# Continuation of the issue #4 These are the more uncommon twig structures With this issue the syntax support for twig should be completed. More precisely the following things that...
My logos lexer implementation somehow does not match the `TK_NOT` token when there is more input (like a whitespace) after it. Instead it matches the `TK_WORD` token in that case,...