Open GoogleCodeExporter opened 9 years ago
A workaround (until fixed) is to use jSoup (jsoup.org) to parse the resultant
output from DaisyDiff into a jSoup Document object and then toString() that to
generate a clean HTML string. jSoup will clean up any erroneous elements in
the document.
eg:
docObj = jSoup.parse(diff_HTML);
return docObj.toString();
Original comment by henrythe...@gmail.com
on 16 Jul 2013 at 12:13
Original issue reported on code.google.com by
christop...@gmail.com
on 25 Apr 2013 at 8:17Attachments: