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

This commit is contained in:
Lee 2024-04-16 20:32:48 +01:00
parent 375a8cc2e6
commit 2be48c7c30

@ -46,10 +46,18 @@ public final class ColorUtils {
return STRIP_COLOR_PATTERN.matcher(input).replaceAll(""); return STRIP_COLOR_PATTERN.matcher(input).replaceAll("");
} }
/**
* Convert the given input
* into HTML.
*
* @param input the input to convert
* @return the HTML converted input
*/
@NonNull @NonNull
public static String toHTML(@NonNull String input) { public static String toHTML(@NonNull String input) {
StringBuilder builder = new StringBuilder(); StringBuilder builder = new StringBuilder();
boolean nextIsColor = false; // Is the next char a color code? boolean nextIsColor = false; // Is the next char a color code?
boolean isBold = false; // Is the text currently bold?
// Get the leading spaces from the first line // Get the leading spaces from the first line
int leadingSpaces = 0; int leadingSpaces = 0;
@ -74,6 +82,19 @@ public final class ColorUtils {
nextIsColor = false; nextIsColor = false;
continue; continue;
} }
if (character == 'l') { // Start bold
isBold = true;
builder.append("<b>");
continue;
}
if (character == 'r') { // Reset formatting
if (isBold) {
builder.append("</b>");
isBold = false;
}
builder.append("</span>");
continue;
}
if (character == ' ') { // Preserve space character if (character == ' ') { // Preserve space character
builder.append("&nbsp;"); builder.append("&nbsp;");
} else { } else {
@ -86,4 +107,5 @@ public final class ColorUtils {
return builder.toString(); return builder.toString();
} }
} }