docs update

This commit is contained in:
Michael Freno
2025-12-14 19:15:52 -05:00
parent 25a08d95a9
commit 1fbb16a00c
19 changed files with 90855 additions and 53906 deletions

View File

@@ -94,6 +94,8 @@ jobs:
echo "Found previous version: v${OLD_VERSION}"
mkdir -p "docs/versions/v${OLD_VERSION}"
cp docs/api.html "docs/versions/v${OLD_VERSION}/api.html"
# Fix back link to use correct relative path for archived version
sed -i 's|href="index.html">← Back to Home|href="../../index.html">← Back to Home|g' "docs/versions/v${OLD_VERSION}/api.html"
echo "✓ Archived previous documentation to docs/versions/v${OLD_VERSION}/"
else
echo "No previous version found, skipping archival"

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -47,6 +47,11 @@ if [ ! -f "$VERSION_DIR/api.html" ]; then
exit 1
fi
echo -e "${YELLOW}Fixing relative paths for archived version...${NC}"
# Fix back link to use correct relative path from versions/vX.X.X/ to root
sed -i.bak 's|href="index.html">← Back to Home|href="../../index.html">← Back to Home|g' "$VERSION_DIR/api.html"
rm "$VERSION_DIR/api.html.bak"
FILE_SIZE=$(du -h "$VERSION_DIR/api.html" | cut -f1)
echo ""