mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-26 01:36:55 +00:00
Guarantee line break after lines
This commit is contained in:
parent
e168a4a4f5
commit
5c81e38c6b
1 changed files with 6 additions and 0 deletions
|
@ -3456,6 +3456,12 @@ public class HtmlHelper {
|
|||
}
|
||||
}, document.body());
|
||||
|
||||
for (LineSpan line : ssb.getSpans(0, ssb.length(), LineSpan.class)){
|
||||
int end = ssb.getSpanEnd(line);
|
||||
if (end<ssb.length()&& ssb.charAt(end)!='\n')
|
||||
ssb.insert(end, "\n");
|
||||
}
|
||||
|
||||
if (debug)
|
||||
for (int i = ssb.length() - 1; i >= 0; i--) {
|
||||
char kar = ssb.charAt(i);
|
||||
|
|
Loading…
Reference in a new issue