I'm using Haml from the command-line to do a basic transform of one .haml file to .html, like this:
> haml input.haml output.html
Thing is, this produces single-quotes around attributes in the resulting HTML. So how to I pass in the :attr_wrapper => '"'
option from the command-line?
Alternatively, can I just globally set :attr_wrapper
to a double-quote?