Small improvement

This commit is contained in:
M66B 2020-02-14 15:40:47 +01:00
parent 8cefb4af1e
commit e8cc2bdddf
1 changed files with 5 additions and 3 deletions

View File

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