
Let's rename this to LibWeb since it aims to provide more parts of the web platform than just HTML. :^)
10 lines
191 B
Bash
Executable file
10 lines
191 B
Bash
Executable file
#!/bin/sh
|
|
|
|
echo "namespace Web {"
|
|
echo "extern const char $1[];"
|
|
echo "const char $1[] = \"\\"
|
|
grep -v '^ *#' < "$2" | while IFS= read -r line; do
|
|
echo "$line""\\"
|
|
done
|
|
echo "\";"
|
|
echo "}"
|