Fresh start without sensitive data

This commit is contained in:
2025-05-11 16:05:18 -06:00
commit 917463e75e
332 changed files with 126989 additions and 0 deletions

View File

View File

View File

@@ -0,0 +1,35 @@
#!/bin/bash
# Helper script to diagnose MkDocs configuration
echo "=== MkDocs and Python Information ==="
echo "Python version:"
python3 --version
echo ""
echo "MkDocs version:"
mkdocs --version
echo ""
echo "=== Installed Packages in Virtual Environment ==="
pip list
echo ""
echo "=== MkDocs Configuration ==="
if [ -f "mkdocs.yml" ]; then
echo "Contents of mkdocs.yml:"
cat mkdocs.yml
echo ""
echo "Checking plugins in mkdocs.yml:"
grep -A 10 "plugins:" mkdocs.yml
else
echo "mkdocs.yml not found in current directory"
fi
echo ""
echo "=== Testing MkDocs Build ==="
echo "Running: mkdocs build --strict"
mkdocs build --strict
echo ""
echo "=== Done ==="