diff --git a/front/src/WebRtc/HtmlUtils.ts b/front/src/WebRtc/HtmlUtils.ts
index 942e553f..569abd07 100644
--- a/front/src/WebRtc/HtmlUtils.ts
+++ b/front/src/WebRtc/HtmlUtils.ts
@@ -25,7 +25,7 @@ export class HtmlUtils {
}
public static escapeHtml(html: string): string {
- const text = document.createTextNode(html);
+ const text = document.createTextNode(html.replace(/(\r\n|\r|\n)/g,'
'));
const p = document.createElement('p');
p.appendChild(text);
return p.innerHTML;