Hello there.
In my index.html i was trying to output this text
{{=A(SPAN('MyWord', _data-tooltip='Hey, this is the word of mine!'), _href='word')}}
and it failed miserably (generated an exception).
I was able to fix this by replacing "data-tooltip" with "data_tooltip" in stupid.css and then changing the above code to
{{=A(SPAN('MyWord', _data_tooltip='Hey, this is the word of mine!'), _href='word')}}
But we all want this stuff to work right out of the box, right?