I had the same need.
I'm not on this project,
but a work-around would be
to use regular expressions on the raw html to eliminate duplicate attributes before calling Tidy.
I went with the last attribute value, ala CSS.
After some doing,
I came up with (Visual Basic):
<code>
Dim Html As String = "<a title='b' id='myanchor' title='c' />"
Html =...
2009-04-14 05:05:52 UTC in Tidy.NET