Skip to content

Releases: davidodenwald/prettier-plugin-jinja-template

v2.0.0

30 Sep 07:56
Compare
Choose a tag to compare
  • Remove quoteAttributes option because JinjaX doesn't use the special syntax anymore.
  • Dropped support for node 14 and 16.
  • Better parser accuracy and performance.

v1.5.0

25 Aug 17:16
Compare
Choose a tag to compare

support prettier range ignore via jinja comments (fixes #34)

v1.4.1

23 Jun 13:25
Compare
Choose a tag to compare

handle start and end delimiters as seperate symbols

v1.4.0

28 Apr 18:25
Compare
Choose a tag to compare

Keep indentation in multiline expressions.

v1.3.3

03 Mar 19:32
Compare
Choose a tag to compare

fix infinite loop on empty expression

v1.3.2

10 Dec 11:37
Compare
Choose a tag to compare

set correct content for blocks after parser rewrite

v1.3.1

15 Oct 17:56
Compare
Choose a tag to compare

add tests and build to npm prepublish

v1.3.0

15 Oct 17:45
Compare
Choose a tag to compare

Recognize end statements that start with "end_".

v1.2.0

07 Oct 10:11
Compare
Choose a tag to compare

Remove hard coded list of non closing statements

The new logic assumes that all statements that start with "end" are closing statements and then searches for the closest statement that has the same name without the "end" and uses it as the start for a block.
All other statements are handled as non closing statements.

v1.1.0

04 Sep 11:59
Compare
Choose a tag to compare

Add option to en-/disable the quotation of HTML attributes to support JinjaX syntax.