From e3337a77b6683ecafc9b61bbc5b1e760a1711958 Mon Sep 17 00:00:00 2001 From: ansuz Date: Thu, 31 Mar 2022 10:21:00 +0530 Subject: [PATCH] don't warn if translations include --- scripts/translations/lint-translations.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/scripts/translations/lint-translations.js b/scripts/translations/lint-translations.js index 62ee8c60a..313eca19e 100644 --- a/scripts/translations/lint-translations.js +++ b/scripts/translations/lint-translations.js @@ -14,13 +14,11 @@ var simpleTags = [ // FIXME register_notes '', - '
  • ', - '
  • ', '', '', ]; -['a', 'b', 'em', 'p', 'i'].forEach(function (tag) { +['a', 'b', 'em', 'p', 'i', 'code', 'li',].forEach(function (tag) { simpleTags.push('<' + tag + '>'); simpleTags.push(''); });