Escape font names with spaces

This commit is contained in:
M66B
2022-02-11 16:57:50 +01:00
parent a6dc44f734
commit 54e69d7b59
2 changed files with 5 additions and 4 deletions

View File

@@ -381,7 +381,7 @@ public class HtmlEx {
// out.append("<tt>");
//}
out.append("<span style=\"font-family:" + s + ";\">");
out.append("<span style='font-family:" + s + ";'>");
}
if (style[j] instanceof SuperscriptSpan) {
out.append("<sup>");