Autolink HTML

This commit is contained in:
M66B
2021-09-05 19:08:52 +02:00
parent aaf4187631
commit 26c9312c96
2 changed files with 16 additions and 0 deletions

View File

@@ -1327,6 +1327,19 @@ public class HtmlHelper {
}, document);
}
static void guessSchemes(Document document) {
for (Element a : document.select("a"))
try {
String href = a.attr("href");
if (TextUtils.isEmpty(href))
continue;
Uri uri = UriHelper.guessScheme(Uri.parse(href));
a.attr("href", uri.toString());
} catch (Throwable ex) {
Log.e(ex);
}
}
static void normalizeNamespaces(Document parsed, boolean display_hidden) {
// <html xmlns:v="urn:schemas-microsoft-com:vml"
// xmlns:o="urn:schemas-microsoft-com:office:office"