Guarantee line break after lines

This commit is contained in:
M66B 2022-03-27 15:18:02 +02:00
parent e168a4a4f5
commit 5c81e38c6b
1 changed files with 6 additions and 0 deletions

View File

@ -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);