first commit

This commit is contained in:
2025-05-14 09:25:32 -06:00
commit 77d62ba2a3
328 changed files with 52223 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 ==="