feat: Improve quote format with guillemets and styling

- Changed quote format to: @[Username]: »quoted text«
- Added processQuotes() to detect and style »text« patterns
- Quote styling: italic, gray background, left border
- Different styling for own messages vs others

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
MarekWo
2026-01-19 10:29:59 +01:00
parent 936698ca46
commit b2418a50d3
3 changed files with 35 additions and 2 deletions
+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();
}