refactor: Remove colon from quote format

Format changed from @[User]: »text« to @[User] »text«
Guillemets alone are sufficient to separate the quote.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
MarekWo
2026-01-19 11:01:50 +01:00
parent 5d01f90ba1
commit 731d4a9d9b
+1 -1
View File
@@ -782,7 +782,7 @@ function quoteTo(username, content) {
quotedText = truncated + '...';
}
input.value = `@[${username}]: »${quotedText}« `;
input.value = `@[${username}] »${quotedText}« `;
updateCharCounter();
input.focus();
}