diff --git a/src/main/java/xyz/mcutils/backend/common/ColorUtils.java b/src/main/java/xyz/mcutils/backend/common/ColorUtils.java index 9840a9a..61c8b8b 100644 --- a/src/main/java/xyz/mcutils/backend/common/ColorUtils.java +++ b/src/main/java/xyz/mcutils/backend/common/ColorUtils.java @@ -60,7 +60,7 @@ public final class ColorUtils { @NonNull public static String toHTML(@NonNull String input) { StringBuilder builder = new StringBuilder(); - builder.append(""); // Open the span tag + builder.append("

"); // Open the span tag boolean nextIsColor = false; // Is the next char a color code? for (char character : input.toCharArray()) { @@ -77,7 +77,7 @@ public final class ColorUtils { } builder.append(character); // Append the char... } - builder.append(""); // Close the span tag + builder.append("

"); // Close the span tag return builder.toString(); } } \ No newline at end of file