It seems that Dart does not provide a default mechanism (or at least I could not find it) to decode HTML escaped entities.
What I'd like to do is convert eg. Q&A
to Q&A
. (This is just an example)
As of version 1.11.1, Dart converts encodes these like so.
From there it is rather simple to create a custom converter implementation but that would not cover all the use-cases. Such as: what if <
is expressed with the hex value of <
?
Anyone got some pretty solution?