Releases: goetas/twital
Releases · goetas/twital
2016-01-06 - Stable version
Twital goes stable! 1.0.0 is out!
Included:
- Twig 2.0 support
- Parent and child templates are fully XHTML compatible. Added
t:block-inner
andt:block-outer
, andt:extends
attributes to be used instead oft:block
andt:extends
nodes (#39) - Documented
t:content
and added `t:replace ( #43) - Proper handling of HTML boolean attributes (#42)
Migration
1.0.0 is almost fully compatible with the 0.x
branch, no "real" issues are expected.
The only issue can be with XML templates:
On order to obtain:
<div class="1">
blah
</div>
Before:
<div t:attr="class=true">
blah
</div>
<!-- or -->
<div t:attr="class=1">
blah
</div>
<!-- or -->
<div t:attr="class='1'">
blah
</div>
After:
<!-- after -->
<div t:attr="class=1">
blah
</div>
<!-- or -->
<div t:attr="class='1'">
blah
</div>
sf3 & various improvements
Merge pull request #35 from hason/perf Fixed a full compatibility mode
Twig 2.0 support
- Twig 2.0 supoort
0.1.7
Atribute escaping fixed
0.1.6 Skip sometimes attribute escaping
Improvments release
HTML5 & Extensions & Loader improvements
0.1.4 Merge branch 'hason-loader'
Fixed some encoding & escaping issues
0.1.3 Merge branch 'hason-clean'
First "stable" release
0.1.2 Added some tests for subscribers
Added some nice features and docs
0.1.1-beta Better docs