From d8f4a3b686b8ce68754d54b43c87da40aceeb1ca Mon Sep 17 00:00:00 2001 From: Kevin Deldycke Date: Tue, 1 Sep 2020 17:13:10 +0200 Subject: [PATCH] Whiteliste HTML tags used for centering image and footnotes. --- .github/markdown-lint.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/markdown-lint.yaml b/.github/markdown-lint.yaml index 6607783..48e3633 100644 --- a/.github/markdown-lint.yaml +++ b/.github/markdown-lint.yaml @@ -8,6 +8,11 @@ MD013: false # Inline HTML # is allowed for beautiful rendering on GitHub. MD033: - # Whitelist some elements for beautiful rendering on GitHub. + # Whitelist elements used to render centered images and footnotes on GitHub. allowed_elements: + - 'a' + - 'br' + - 'i' - 'img' + - 'p' + - 'sup'