You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is technically not this gem's issue but Temple's, but I fixed this in v6.0.4 on Haml's side as it seems like our fix isn't going to be merged to Temple soon.
https://build.opensuse.org/request/show/1010035
by user coolo + dimstar_suse
updated to version 6.0.6
see installed CHANGELOG.md
## 6.0.6
* Prevent CRuby from accidentally using the Ruby implementation fallback
* Reversing what v6.0.3 and v6.0.4 did, but still supporting Wasm.
## 6.0.5
* Resurrect `#haml_object_ref` support in an object reference [#1097](haml/haml#1097)
* This was removed in 6.0.0, and added back in this version.
* Stop warning `remove_whitespace: true` option.
## 6.0.4
Released on October 2, 2022
([diff](haml/haml@v6.0.3...v6.0.4)).
* Fix a parse failure of `%` in attributes [#1096](haml/haml#1096)
* Add another fallback from C to Ruby for Wasm.
## 6.0.3
Released on September 28, 2022
([diff](https://github.com/h
in an haml attribute like title, this works:
%p{ title: %{foo(#{some_local_variable})} }
and this as well:
%p{ title: "foo(#{some_local_variable})" }
but this does not:
%p{ title: %(foo(#{some_local_variable})) }
this raises:
(eval):1: unterminated string meets end of file
%(foo(#)
^
imho all examples are right syntax
The text was updated successfully, but these errors were encountered: