|
|
@ -442,6 +442,10 @@ public class HtmlHelper {
|
|
|
|
|
|
|
|
|
|
|
|
boolean dark = Helper.isDarkTheme(context);
|
|
|
|
boolean dark = Helper.isDarkTheme(context);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Remove tracking pixels
|
|
|
|
|
|
|
|
if (disable_tracking)
|
|
|
|
|
|
|
|
removeTrackingPixels(context, document, false);
|
|
|
|
|
|
|
|
|
|
|
|
// Font
|
|
|
|
// Font
|
|
|
|
for (Element font : document.select("font")) {
|
|
|
|
for (Element font : document.select("font")) {
|
|
|
|
// https://developer.mozilla.org/en-US/docs/Web/HTML/Element/font
|
|
|
|
// https://developer.mozilla.org/en-US/docs/Web/HTML/Element/font
|
|
|
@ -802,10 +806,6 @@ public class HtmlHelper {
|
|
|
|
for (Element hf : document.select("thead,tfoot"))
|
|
|
|
for (Element hf : document.select("thead,tfoot"))
|
|
|
|
hf.tagName("span");
|
|
|
|
hf.tagName("span");
|
|
|
|
|
|
|
|
|
|
|
|
// Remove tracking pixels
|
|
|
|
|
|
|
|
if (disable_tracking)
|
|
|
|
|
|
|
|
removeTrackingPixels(context, document, false);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Images
|
|
|
|
// Images
|
|
|
|
// https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img
|
|
|
|
// https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img
|
|
|
|
for (Element img : document.select("img")) {
|
|
|
|
for (Element img : document.select("img")) {
|
|
|
|