allow basic 'i' tags in inline HTML in translations

This commit is contained in:
ansuz 2021-03-23 17:23:01 +05:30
parent d6e736b29f
commit 0093cc3b71
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ var simpleTags = [
'<br />',
];
['a', 'b', 'em', 'p'].forEach(function (tag) {
['a', 'b', 'em', 'p', 'i'].forEach(function (tag) {
simpleTags.push('<' + tag + '>');
simpleTags.push('</' + tag + '>');
});