Roomfaqs: Allow other HTML formatting tags

This commit is contained in:
Bär Halberkamp 2016-10-13 17:50:43 +02:00
parent 7aa207e9f5
commit 7439278f66

View File

@ -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 {