Suppress title if same as img alt

This commit is contained in:
M66B 2022-07-08 07:21:09 +02:00
parent ba186235e0
commit 905d56038d
1 changed files with 6 additions and 2 deletions

View File

@ -1037,8 +1037,12 @@ public class HtmlHelper {
if (text_titles)
for (Element e : document.select("[title]")) {
String title = e.attr("title");
if (!TextUtils.isEmpty(title))
e.prependChild(document.createElement("span").text("{" + title + "}"));
if (TextUtils.isEmpty(title))
continue;
if ("img".equals(e.tagName()) &&
title.equals(e.attr("alt")))
continue;
e.prependChild(document.createElement("span").text("{" + title + "}"));
}
// Replace headings