Small improvement

pull/174/head
M66B 5 years ago
parent 8cefb4af1e
commit e8cc2bdddf

@ -1198,14 +1198,16 @@ public class HtmlHelper {
} }
static void cleanup(Document d) { static void cleanup(Document d) {
for (Element aspace : d.select(".Apple-converted-space")) for (Element aspace : d.select(".Apple-converted-space")) {
if (aspace.previousSibling() instanceof TextNode) { Node next = aspace.nextSibling();
TextNode tnode = (TextNode) aspace.previousSibling(); if (next instanceof TextNode) {
TextNode tnode = (TextNode) next;
tnode.text(tnode.text() + " "); tnode.text(tnode.text() + " ");
aspace.remove(); aspace.remove();
} else } else
aspace.replaceWith(new TextNode(" ")); aspace.replaceWith(new TextNode(" "));
} }
}
static boolean truncate(Document d, boolean reformat) { static boolean truncate(Document d, boolean reformat) {
int at = (reformat ? MAX_FORMAT_TEXT_SIZE : MAX_FULL_TEXT_SIZE); int at = (reformat ? MAX_FORMAT_TEXT_SIZE : MAX_FULL_TEXT_SIZE);

Loading…
Cancel
Save