summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/Scripts/GenerateStyleSheetSource.sh
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-01-12 12:17:30 +0100
committerAndreas Kling <kling@serenityos.org>2021-01-12 12:17:46 +0100
commit13d7c09125f8eec703d0a43a9a87fc8aa08f7319 (patch)
tree70fd643c429cea5c1f9362c2674511d17a53f3b5 /Userland/Libraries/LibWeb/Scripts/GenerateStyleSheetSource.sh
parentdc28c07fa526841e05e16161c74a6c23984f1dd5 (diff)
downloadserenity-13d7c09125f8eec703d0a43a9a87fc8aa08f7319.zip
Libraries: Move to Userland/Libraries/
Diffstat (limited to 'Userland/Libraries/LibWeb/Scripts/GenerateStyleSheetSource.sh')
-rwxr-xr-xUserland/Libraries/LibWeb/Scripts/GenerateStyleSheetSource.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/Scripts/GenerateStyleSheetSource.sh b/Userland/Libraries/LibWeb/Scripts/GenerateStyleSheetSource.sh
new file mode 100755
index 0000000000..aef61fcfae
--- /dev/null
+++ b/Userland/Libraries/LibWeb/Scripts/GenerateStyleSheetSource.sh
@@ -0,0 +1,10 @@
+#!/bin/sh
+
+echo "namespace Web::CSS {"
+echo "extern const char $1[];"
+echo "const char $1[] = \"\\"
+grep -v '^ *#' < "$2" | while IFS= read -r line; do
+ echo "$line""\\"
+done
+echo "\";"
+echo "}"