mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-24 15:11:03 +00:00
Fixed space at start of plain text lines
This commit is contained in:
parent
a56266db9e
commit
6baac38747
1 changed files with 2 additions and 0 deletions
|
@ -615,6 +615,8 @@ public class HtmlHelper {
|
|||
static String getText(String html) {
|
||||
final StringBuilder sb = new StringBuilder();
|
||||
|
||||
html = html.replace("<br> ", "<br>");
|
||||
|
||||
NodeTraversor.traverse(new NodeVisitor() {
|
||||
private int qlevel = 0;
|
||||
private int tlevel = 0;
|
||||
|
|
Loading…
Reference in a new issue