Fixed image links

This commit is contained in:
M66B 2019-02-11 08:35:03 +00:00
parent 8c338924ad
commit 28a7d33ba0
1 changed files with 3 additions and 7 deletions

View File

@ -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("&#8230;");