Is there any way to convert a w3cdom document into a Jsoup document without serializing to a string?
There is a converter to go from Jsoup->w3cdom, but I cannot find one for the opposite direction.
My ultimate goal is to extract information from the w3cdom document using a CSS selector. From my understanding, Jsoup is the strongest option for this, but only seems to be able to ingest a string, which is somewhat expensive to generate.