mirror of
https://github.com/RGBCube/serenity
synced 2025-05-25 04:15:06 +00:00
LibHTML: Add an empty CSS parser.
This commit is contained in:
parent
85d71024f7
commit
891e668e35
14 changed files with 67 additions and 11 deletions
10
LibHTML/Scripts/GenerateStyleSheetSource.sh
Executable file
10
LibHTML/Scripts/GenerateStyleSheetSource.sh
Executable file
|
@ -0,0 +1,10 @@
|
|||
#!/bin/bash
|
||||
|
||||
echo "extern const char $1[];"
|
||||
echo "const char $1[] = \"\\"
|
||||
IFS=$'\n'
|
||||
for line in $(cat $2); do
|
||||
echo $line"\\"
|
||||
done
|
||||
echo "\";"
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue