diff --git a/src/app/plugins/react-custom-html-parser.tsx b/src/app/plugins/react-custom-html-parser.tsx
index 31502a9bf..5f3a33531 100644
--- a/src/app/plugins/react-custom-html-parser.tsx
+++ b/src/app/plugins/react-custom-html-parser.tsx
@@ -70,7 +70,7 @@ function renderTokenizedCode(code: string, lang: string): React.ReactNode {
if (!TDS_TOKENIZER_LANGS.has(normalised)) return code;
const tokens = tokenize(code, normalised);
-
+
return tokens.map((tok, idx) => (
{tok.text}