mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-27 02:07:12 +00:00
Fixed image links
This commit is contained in:
parent
8c338924ad
commit
28a7d33ba0
1 changed files with 3 additions and 7 deletions
|
@ -82,6 +82,8 @@ public class HtmlHelper {
|
|||
ol.append("<br>");
|
||||
|
||||
for (Element img : document.select("img")) {
|
||||
img.prependElement("br");
|
||||
|
||||
boolean linked = false;
|
||||
for (Element parent : img.parents())
|
||||
if ("a".equals(parent.tagName())) {
|
||||
|
@ -93,18 +95,12 @@ public class HtmlHelper {
|
|||
if (src.startsWith("http://") || src.startsWith("https://")) {
|
||||
Element a = document.createElement("a");
|
||||
a.attr("href", src);
|
||||
a.appendChild(img.clone());
|
||||
img.replaceWith(a);
|
||||
a.appendChild(img);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
for (Element img : document.select("img")) {
|
||||
Element p = document.createElement("p");
|
||||
img.replaceWith(p);
|
||||
p.appendChild(img);
|
||||
}
|
||||
|
||||
if (!showQuotes)
|
||||
for (Element quote : document.select("blockquote"))
|
||||
quote.html("…");
|
||||
|
|
Loading…
Reference in a new issue