Set indent styles

pull/194/merge
M66B 4 years ago
parent fd9cfd9c7f
commit 59208b20ee

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

Loading…
Cancel
Save