From 0093cc3b712d0942614d04928c9edd1673a962ba Mon Sep 17 00:00:00 2001 From: ansuz Date: Tue, 23 Mar 2021 17:23:01 +0530 Subject: [PATCH] allow basic 'i' tags in inline HTML in translations --- scripts/find-html-translations.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/find-html-translations.js b/scripts/find-html-translations.js index fd5a01f54..8c93a6f8f 100644 --- a/scripts/find-html-translations.js +++ b/scripts/find-html-translations.js @@ -5,7 +5,7 @@ var simpleTags = [ '
', ]; -['a', 'b', 'em', 'p'].forEach(function (tag) { +['a', 'b', 'em', 'p', 'i'].forEach(function (tag) { simpleTags.push('<' + tag + '>'); simpleTags.push(''); });