Prevent Jsoup validation exception

This commit is contained in:
M66B 2022-10-25 22:20:08 +02:00
parent 84cdc6ca64
commit fe408fcc77
1 changed files with 5 additions and 2 deletions

View File

@ -1658,8 +1658,11 @@ public class HtmlHelper {
tag.startsWith("html:") || tag.startsWith("body:"));
if (display_hidden || show) {
String[] nstag = tag.split(":");
e.tagName(nstag[nstag.length > 1 ? 1 : 0]);
Log.i("Updated tag=" + tag + " to=" + e.tagName());
String t = nstag[nstag.length > 1 ? 1 : 0];
if (!TextUtils.isEmpty(t)) {
e.tagName(t);
Log.i("Updated tag=" + tag + " to=" + t);
}
if (!show) {
String style = e.attr("style");