!!Breaking Changes!!
- Remove
- <code>
and= <code returned as content>
. This simplifies the templates much further but is not necessarily a strict upgrade if you like using code in your templates.
- Using hera for parsing
- Dropped CoffeeScript dependency
- Removed
- <code>
- Deprecated
h1= @content
in favor ofh1 @content
syntax - Faster
- Parser and runtime combined in less than 10kb
- No more implicit
options=
in<select>
element. Options must be added explicitly as children. - No longer allowing unquoted text in attribute values, numbers are still ok.
button(radical=true)
->button(radical="true")
- SVG support
(TODO: fill out 1.0 changelog)
- Added
|
for plain text - Improved style attribute handling
- Fixed unnecessary memory leakage in complex templates
- Runtime size down to < 2.5kb minified and gzipped
- Removed dependence on deprecated
Observable.concat
- Removed dependence on deprecated
Observable#each
- Removed Jadelet.VERSION property
- Removed :filters
- Added CHANGELOG.md
- Renamed from Hamlet to Jadelet
- Merged parser and compiler into
jadelet
repository