From 7439278f66cbb9fb5c53facd2bc3cdf0323ea002 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A4r=20Halberkamp?= Date: Thu, 13 Oct 2016 17:50:43 +0200 Subject: [PATCH] Roomfaqs: Allow other HTML formatting tags --- chat-plugins/faq.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chat-plugins/faq.js b/chat-plugins/faq.js index 1282310e74..ea9993cb49 100644 --- a/chat-plugins/faq.js +++ b/chat-plugins/faq.js @@ -4,7 +4,7 @@ const fs = require('fs'); const path = require('path'); const ROOMFAQ_FILE = path.resolve(__dirname, '../config/chat-plugins/faqs.json'); -const ALLOWED_HTML = ['a', 'font', 'i', 'u', 'b']; +const ALLOWED_HTML = ['a', 'font', 'i', 'u', 'b', 'strong', 'em', 'small', 'sub', 'sup', 'ins', 'del']; let roomFaqs = {}; try {