pls work
All checks were successful
Deploy App / docker (ubuntu-latest, 2.44.0, 17, 3.8.5) (push) Successful in 1m49s
All checks were successful
Deploy App / docker (ubuntu-latest, 2.44.0, 17, 3.8.5) (push) Successful in 1m49s
This commit is contained in:
parent
b7b788847d
commit
37b048c2a9
@ -70,15 +70,15 @@ public final class ColorUtils {
|
|||||||
}
|
}
|
||||||
|
|
||||||
for (char character : input.toCharArray()) {
|
for (char character : input.toCharArray()) {
|
||||||
// Found color symbol, next character is the color code
|
if (character == '§') { // Found color symbol
|
||||||
if (character == '§') {
|
|
||||||
nextIsColor = true;
|
nextIsColor = true;
|
||||||
builder.append(character); // Append the color symbol to the HTML
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (nextIsColor) { // Apply color formatting
|
if (nextIsColor) { // Apply color formatting
|
||||||
// Map the current color to its hex code
|
// Map the current color to its hex code
|
||||||
String color = COLOR_MAP.getOrDefault(Character.toLowerCase(character), "");
|
String color = COLOR_MAP.getOrDefault(Character.toLowerCase(character), "");
|
||||||
|
// Check if the current character is a valid color code
|
||||||
|
if (!color.isEmpty()) {
|
||||||
builder.append("<span style=\"color:").append(color);
|
builder.append("<span style=\"color:").append(color);
|
||||||
// Apply additional formatting if necessary
|
// Apply additional formatting if necessary
|
||||||
if (character == 'l') { // Make the char bold
|
if (character == 'l') { // Make the char bold
|
||||||
@ -94,6 +94,7 @@ public final class ColorUtils {
|
|||||||
builder.append(";text-decoration:line-through");
|
builder.append(";text-decoration:line-through");
|
||||||
}
|
}
|
||||||
builder.append("\">");
|
builder.append("\">");
|
||||||
|
}
|
||||||
nextIsColor = false; // Reset the flag
|
nextIsColor = false; // Reset the flag
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user