mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-01 12:44:42 +00:00
Normalize Usenet separator
This commit is contained in:
parent
005501258c
commit
7102eb3812
1 changed files with 4 additions and 3 deletions
|
@ -1837,14 +1837,15 @@ public class HtmlHelper {
|
||||||
tnode = block.get(i);
|
tnode = block.get(i);
|
||||||
text = tnode.getWholeText();
|
text = tnode.getWholeText();
|
||||||
|
|
||||||
|
// Remove whitespace before/after newlines
|
||||||
|
text = TRIM_WHITESPACE_NL.matcher(text).replaceAll(" ");
|
||||||
|
|
||||||
if ("-- ".equals(text)) {
|
if ("-- ".equals(text)) {
|
||||||
|
tnode.text(text);
|
||||||
i++;
|
i++;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Remove whitespace before/after newlines
|
|
||||||
text = TRIM_WHITESPACE_NL.matcher(text).replaceAll(" ");
|
|
||||||
|
|
||||||
// Remove leading whitespace
|
// Remove leading whitespace
|
||||||
if (i == 0 || endsWithWhitespace(block.get(i - 1).text())) {
|
if (i == 0 || endsWithWhitespace(block.get(i - 1).text())) {
|
||||||
index = 0;
|
index = 0;
|
||||||
|
|
Loading…
Reference in a new issue