1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-28 10:47:28 +00:00

Set indent styles

This commit is contained in:
M66B 2022-01-19 21:13:08 +01:00
parent fd9cfd9c7f
commit 59208b20ee

View file

@ -152,7 +152,9 @@ public class HtmlEx {
.append(eu.faircode.email.HtmlHelper.getQuoteStyle(text, next, end))
.append("\">");
else if (span instanceof eu.faircode.email.IndentSpan)
out.append("<blockquote>");
out.append("<blockquote style=\"")
.append(eu.faircode.email.HtmlHelper.getIndentStyle(text, next, end))
.append("\">");
}
withinBlockquote(out, text, i, next, option);