diff --git a/app/static/js/message-utils.js b/app/static/js/message-utils.js index 337c1fb..4d43301 100644 --- a/app/static/js/message-utils.js +++ b/app/static/js/message-utils.js @@ -53,7 +53,8 @@ function processQuotes(text) { const quotePattern = /»([^«]+)«/g; return text.replace(quotePattern, (_match, quoted) => { - return `»${quoted}«`; + // Display without guillemets (styling is enough) + line break after + return `${quoted}
`; }); }