I'm using a tool called whacko to parse and manipulate HTML files.
One of the side effects it has is that it turns
<div flex class="flexible">
<b>Content</b>
</div>
into
<div flex="" class="flexible">
<b>Content</b>
</div>
And likewise for other empty attributes.
Does this difference pose any problems? Is the flex=""
form invalid, does it need to be handled differently?