Open
Description
Currently, rather than using the style
function, the attribute
function is being used for style attributes.
currently
<div style="background-color: red;"></div>
outputs as
div [ attribute "style" "background-color: red;" ]
[]
but
div [ style [("background-color", "red") ]
[]
would be much nicer