Releases: davidodenwald/prettier-plugin-jinja-template
Releases · davidodenwald/prettier-plugin-jinja-template
v1.0.0
update plugin to support prettier v3
Starting with Prettier 3 auto-discovery of plugins has been removed.
To enable this plugin you ether have to add it to your prettier config:
{
"plugins": ["prettier-plugin-jinja-template"]
}
or add it to the prettier command:
npx prettier --write **/*.html --plugin=prettier-plugin-jinja-template
v0.5.0
v0.4.0
preserve empty lines between jinja elements
cleanup statements if they only contain whitespace
v0.3.0
Add support for delimiters in expressions
v0.2.0
align indentation of multiline expressions and statements
v0.1.1
remove check for the statement keyword
v0.1.0
add with statement support
v0.0.5
keep else inline if there is no newline around
v0.0.4
add elif statement
v0.0.3
Minor fixes