Initial import: web4beginners editor and deployment setup

This commit is contained in:
2026-03-06 13:49:43 +01:00
commit fd9ea482bf
73 changed files with 4043 additions and 0 deletions

8
scripts/extract_content.sh Executable file
View File

@@ -0,0 +1,8 @@
#!/usr/bin/env bash
set -euo pipefail
INPUT_HTML="${1:-web4beginners.com.html}"
OUTPUT_JSON="${2:-content/site-content.de.json}"
mkdir -p "$(dirname "$OUTPUT_JSON")"
php -d opcache.enable_cli=0 scripts/extract_dom_content.php "$INPUT_HTML" "$OUTPUT_JSON"