haml / haml-rails

let your Gemfile do the talking
MIT License
1.04k stars 169 forks source link

options[:format] = :xhtml not working #184

Open back2war opened 1 year ago

back2war commented 1 year ago

Hello, I'm trying to get the same behavior for :xhtml option as in Haml 5, but it doesn't work.

config/initializers/haml.rb Haml::Template.options[:format] = :xhtml

app/views/test/index.html.haml %p{ selected: true, data: { boolean_true: true, boolean: false } }

Result:

https://github.com/back2war/haml6-test

Could you please advise how to get XHTML like attributes?