In dart,
I want to parse a string "<!DOCTYPE HTMT><html><head></head><body>....</body></html>
" to a DOM so that I can manipulate element in the generated DOM. I know in JQuery, there is $.parseHTML to deal with it. But I can not find anything similar in dart.
Thank you.
(I have tried html2lib, but the output Document cannot use query(".classname")
to select.)