Preserve whitespace in HTML
All checks were successful
Deploy API / docker (ubuntu-latest, 2.44.0, 17, 3.8.5) (push) Successful in 1m31s

This commit is contained in:
Braydon 2024-04-14 17:01:27 -04:00
parent d1b33d3d6e
commit 6c4ee55b95

@ -97,7 +97,7 @@ public final class ColorUtils {
nextIsColor = false;
continue;
}
builder.append(character); // Append the char...
builder.append(character == ' ' ? " " : character); // Append the char...
}
return builder.toString();
}