From 44a49b4c2f4e78ba0af8da8b762a8e1647f6666f Mon Sep 17 00:00:00 2001 From: "Hartung, Michael" <michael.hartung@uni-hamburg.de> Date: Fri, 28 Oct 2022 12:13:27 +0200 Subject: [PATCH] do not prefix fa-icons.component.html to enable sprite access by id --- prefixCSS.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/prefixCSS.py b/prefixCSS.py index 19ddfc1d..6113f510 100644 --- a/prefixCSS.py +++ b/prefixCSS.py @@ -181,6 +181,8 @@ class ParserHTML: for root, dirs, files in os.walk(directory): for file in files: if file.endswith(".component.html"): + if ('fa-icons' in file): + continue path = os.path.join(root, file) print('parsing', path) html = self.parseHtml(path) -- GitLab