mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-28 18:47:15 +02:00
12 lines
228 B
Bash
Executable File
12 lines
228 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "#include <AK/StringView.h>"
|
|
echo "namespace Web::CSS {"
|
|
echo "extern StringView $1;"
|
|
echo "StringView $1 = \"\\"
|
|
grep -v '^ *#' < "$2" | while IFS= read -r line; do
|
|
echo "$line""\\"
|
|
done
|
|
echo "\"sv;"
|
|
echo "}"
|