maybe bold for html?

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

@ -80,14 +80,15 @@ 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;
}
if (character == 'r') { // Reset formatting
builder.append("</span>");
if (character == 'l') { // Start bold
builder.append("<span style=\"font-weight: bold;\">");
continue;
}
if (character == 'r') { // Reset formatting
builder.append("</span>");
continue;
}
continue;
}
if (character == ' ') { // Preserve space character