Handle pre in signatures

This commit is contained in:
M66B 2020-11-24 15:53:42 +01:00
parent 77636ca009
commit 0fb8fec6bb
1 changed files with 4 additions and 0 deletions

View File

@ -2343,6 +2343,10 @@ public class HtmlHelper {
setSpan(ssb, new NumberSpan(dp6, colorAccent, textSize, index), start, ssb.length());
}
break;
case "pre":
// Signature
setSpan(ssb, new TypefaceSpan("monospace"), start, ssb.length());
break;
case "ol":
case "ul":
int llevel = 0;