Insert newline before signature separator

This commit is contained in:
M66B 2022-02-10 09:26:08 +01:00
parent 1544b41f45
commit 500a1682e3
1 changed files with 1 additions and 0 deletions

View File

@ -6141,6 +6141,7 @@ public class FragmentCompose extends FragmentBase {
// https://datatracker.ietf.org/doc/html/rfc3676#section-4.3
Element span = document.createElement("span");
span.text("-- ");
span.prependElement("br");
span.appendElement("br");
div.appendChild(span);
}