Rename mkdocs.yml to properdocs.yml, remove --strict flag

- Update readme-generate.js to output properdocs.yml instead of mkdocs.yml
- Remove --strict from build command (pre-existing broken links in content)
- Remove legacy mkdocs.yml

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
Anduin Xue
2026-05-04 13:25:23 +00:00
parent a7d81fa681
commit d541fd425d
3 changed files with 507 additions and 2 deletions

View File

@@ -13,7 +13,7 @@ FROM python:3.11 AS python-env
WORKDIR /app
COPY --from=lint-env /app .
RUN rm node_modules -rf && pip install -r requirements.txt
RUN python3 -m properdocs build --strict
RUN python3 -m properdocs build
# ============================
# Prepare Runtime Environment