-
Notifications
You must be signed in to change notification settings - Fork 54
/
CHANGELOG
64 lines (44 loc) · 2.18 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
* 1.8.0 (2015-12-17)
* Twig 2.x compatibility (hason)
* Make Executor::compile public (pwhelan)
* 1.7.1 (2015-07-28)
* Fixed PHP cache invalidation (mendelk)
* Fixed filters with trailing white space (thelucre)
* 1.7.0 (2015-01-23)
* Dropped PHP 5.3 support
* Added Ruby 1.9 style attributes support
* Added new filters (hason)
* 1.6.0 (2014-08-16)
* Code statements continue on the next line when the current one is terminated by
a comma
* Ruby-style attributes continue on the next line when braces are not balanced
and the current one is terminated by a comma
* Attributes defined by attribute methods or expressions are merged with
existing .class and #id instead of overriding them (%p.class{attrs()})
* 1.5.0 (2014-07-08)
* Improved the Twig Loader (hason)
* 1.4.0 (2014-05-23)
* Now attributes are escaped only if escape is activated (Hassan Amouhzi)
* Added an Executor that can easily execute php-based templates
* 1.3.0 (2013-10-04)
* Made filters modular (hason)
* Added filters: coffee, escaped, less, markdown, php, scss, twig (hason)
* Spec: Case insensitive doctype id after `!!!`
* Spec: `!!! XML` doctype ignored in non xhtml mode
* Spec: Do not output `/>` on empty elements in non xhtml mode
* Fixed handling of escaped string interpolations (hason)
* Improved Object Reference support: object name override (ronan-gloo)
* New examples
* 1.2.2 (2013-03-29)
* Flatten deeply-nested data attributes
* 1.2.0 (2013-02-09)
* Added support for interpolations in attributes: %form(action="" #{form_enctype(form)})
* Added support for object reference syntax: %div[object]
* Made the parser more permissive when parsing content of -# comments
* Fixed rendering of <?xml tags to not conflict with php short open tags
* Added ability to use inline comments in php code
* Added attribute expression support in ruby-like attributes: %html{get_attrs()}
* Added boolean attribute syntax in html-like attributes: %input(type="checkbox" checked)
* 1.1.0 (2012-09-24)
* Added handling of special attributes (e.g. id, class, data, and boolean attributes)
* Compiled MtHaml templates now need MtHaml at runtime in some cases (and a Twig extension, for Twig templates).