Revert "Consider monospace font as plain text"

This reverts commit a9009f73e9.
This commit is contained in:
M66B
2024-02-04 10:49:41 +01:00
parent a9009f73e9
commit e49154f90c
2 changed files with 8 additions and 18 deletions

View File

@@ -894,12 +894,6 @@ public class HtmlHelper {
if (!text_font)
continue;
if (!TextUtils.isEmpty(value)) {
List<String> faces = StyleHelper.getTypeFaces(value);
if (faces.contains("monospace"))
element.attr("x-plain", "true");
}
// https://developer.mozilla.org/en-US/docs/Web/CSS/font-family
sb.append(key).append(":").append(value).append(";");
break;