mirror of
https://github.com/haml/haml.git
synced 2022-11-09 12:33:31 -05:00
Updated changelog
This commit is contained in:
parent
2d2687a28b
commit
0c1cfbdf0b
1 changed files with 10 additions and 0 deletions
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -2,6 +2,16 @@
|
|||
|
||||
## 3.2.0 (Unreleased)
|
||||
|
||||
* Haml now flattens deeply nested data attribute hashes. For example:
|
||||
|
||||
`.foo{:data => {:a => "b", :c => {:d => "e", :f => "g"}}}`
|
||||
|
||||
would render to:
|
||||
|
||||
`<div class='foo' data-a='b' data-c-d='e' data-c-f='g'></div>`
|
||||
|
||||
(thanks to [Péter Pál Koszta](https://github.com/koszta))
|
||||
|
||||
* Filters that rely on third-party template engines are now implemented using
|
||||
[Tilt](github.com/rtomayko/tilt). Several new filters have been added, namely
|
||||
SCSS (:scss), LessCSS, (:less), and Coffeescript (:coffee/:coffeescript).
|
||||
|
|
Loading…
Reference in a new issue