mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-29 11:15:51 +00:00
Fixed extra newlines
This commit is contained in:
parent
1be972b1e3
commit
3e55d89854
1 changed files with 9 additions and 3 deletions
|
@ -550,7 +550,8 @@ public class HtmlHelper {
|
|||
if (!TextUtils.isEmpty(style)) {
|
||||
boolean block = false;
|
||||
StringBuilder sb = new StringBuilder();
|
||||
if ("span".equals(element.tagName()) &&
|
||||
if (!view &&
|
||||
"span".equals(element.tagName()) &&
|
||||
"rtl".equals(element.attr("dir")))
|
||||
block = true;
|
||||
|
||||
|
@ -741,7 +742,8 @@ public class HtmlHelper {
|
|||
case "text-align":
|
||||
// https://developer.mozilla.org/en-US/docs/Web/CSS/text-align
|
||||
if (text_align) {
|
||||
block = true;
|
||||
if (!element.isBlock())
|
||||
block = true;
|
||||
element.attr("x-align", value);
|
||||
sb.append(key).append(':').append(value).append(';');
|
||||
}
|
||||
|
@ -749,8 +751,12 @@ public class HtmlHelper {
|
|||
}
|
||||
}
|
||||
|
||||
if (block)
|
||||
if (block) {
|
||||
sb.append("display:block;");
|
||||
Element next = element.nextElementSibling();
|
||||
if (next != null && "br".equals(next.tagName()))
|
||||
next.remove();
|
||||
}
|
||||
|
||||
if (sb.length() == 0)
|
||||
element.removeAttr("style");
|
||||
|
|
Loading…
Reference in a new issue