maybe bold for html?
All checks were successful
Deploy App / docker (ubuntu-latest, 2.44.0, 17, 3.8.5) (push) Successful in 1m25s

This commit is contained in:
Lee 2024-04-16 20:40:09 +01:00
parent 65aa5b102b
commit 5c77b59b90

@ -80,8 +80,7 @@ public final class ColorUtils {
String color = COLOR_MAP.getOrDefault(Character.toLowerCase(character), "");
builder.append("<span style=\"color:").append(color).append("\">");
nextIsColor = false;
continue;
}
if (character == 'l') { // Start bold
builder.append("<span style=\"font-weight: bold;\">");
continue;
@ -90,6 +89,8 @@ public final class ColorUtils {
builder.append("</span>");
continue;
}
continue;
}
if (character == ' ') { // Preserve space character
builder.append("&nbsp;");
} else {