From b560a8651523f4a408a23722c7f4e1e5981dcd09 Mon Sep 17 00:00:00 2001 From: Moritz Warning Date: Thu, 20 Aug 2020 09:53:32 +0200 Subject: [PATCH] excempt svg from html5validator The error message refers to a missing 'lang' attribute of a non existing html tag, both of which is not applicable to a svg file. --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a7c5a87..15ca634 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -21,7 +21,7 @@ check HTML, CSS and SVG with html5validator: stage: pre-build image: cyb3rjak3/html5validator:latest script: - - html5validator --root www --also-check-css --also-check-svg --show-warnings --log INFO + - html5validator --root www --also-check-css --show-warnings --log INFO .build python: stage: pre-build -- 2.30.2