Releases: neuland/jade4j
Releases · neuland/jade4j
v1.0.3
- Fixing Issue 114: Blank strings in brackets being casted to 0
v1.0.2
- Fixing Issue 113: &attributes on Mixin not working
v1.0.1
- Fixing Issue 112: Fixed ++ and -- recognition
- Fixing Issue 111: Maven Upgrade auf 3.2.5
- Added Testcases for closed Issues 43,56,70,74,81,97,104,107
v1.0.0
In Version 1.0.0 we updated to the new Syntax of JadeJs 1.11. There are also some Breaking Changes:
- Instead of 'id = 5' you must use '- var id = 5'
- Instead of 'h1(attributes, class = "test")' you must use 'h1(class= "test")&attributes(attributes)'
- Instead of '!!! 5' you must use 'doctype html'
- Jade Syntax for Conditional Comments is not supported anymore
- Thanks to rzara for contributing to issue-108
We mark this release as a pre-release, because of the major changes we made to Jade4J.
v0.4.3
Accepted pull request from dusanmsk (#91) regarding mixin argument splitting and added further tests.
v0.4.2
issue89: Test files renamed (was #89 instead of #90).
v0.3.17
- added sources to maven repository
- added support for multiple block statements in one mixin
- fixed issues when using if/case statements inside a mixin
v0.3.16
- allowed including files without having to register a specific filter
- enabled self closing tags with trailing "/" #57
v0.3.15
- added support for including non jade files inside a template
v0.3.14
- added ability to clear expression and template caches
- added new convenience method to Jade4J thats lets you use Reader #49