Fixed image links

pull/147/head
M66B 6 years ago
parent 8c338924ad
commit 28a7d33ba0

@ -82,6 +82,8 @@ public class HtmlHelper {
ol.append("<br>"); ol.append("<br>");
for (Element img : document.select("img")) { for (Element img : document.select("img")) {
img.prependElement("br");
boolean linked = false; boolean linked = false;
for (Element parent : img.parents()) for (Element parent : img.parents())
if ("a".equals(parent.tagName())) { if ("a".equals(parent.tagName())) {
@ -93,18 +95,12 @@ public class HtmlHelper {
if (src.startsWith("http://") || src.startsWith("https://")) { if (src.startsWith("http://") || src.startsWith("https://")) {
Element a = document.createElement("a"); Element a = document.createElement("a");
a.attr("href", src); a.attr("href", src);
a.appendChild(img.clone());
img.replaceWith(a); 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) if (!showQuotes)
for (Element quote : document.select("blockquote")) for (Element quote : document.select("blockquote"))
quote.html("&#8230;"); quote.html("&#8230;");

Loading…
Cancel
Save