Change highlighting to match the compiler

master
Araozu 2024-07-31 15:25:49 -05:00
parent 7e4d11123e
commit a3fdd94fe4
1 changed files with 3 additions and 0 deletions

View File

@ -169,6 +169,9 @@ function process_token_value_and_end(value: string, token_type: TokenType, first
if (token_type === "MultilineComment") {
token_value = `/*${token_value}*/`;
new_end += 4;
} else if (token_type === "String") {
token_value = `"${token_value}"`;
new_end += 2;
}
// Escape html and return