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

@ -2527,6 +2527,9 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
.appendElement("em")
.text(context.getString(R.string.title_truncated));
HtmlHelper.autoLink(document);
HtmlHelper.guessSchemes(document);
boolean overview_mode = prefs.getBoolean("overview_mode", false);
HtmlHelper.setViewport(document, overview_mode);
if (inline || show_images)

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"