docs(quarto): fix build-log broken refs and fenced-div warnings#321
Open
WhalerMike wants to merge 1 commit intomainfrom
Open
docs(quarto): fix build-log broken refs and fenced-div warnings#321WhalerMike wants to merge 1 commit intomainfrom
WhalerMike wants to merge 1 commit intomainfrom
Conversation
Resolves all WARN entries from the latest Quarto render run:
- 404.qmd: replace dead targets (adapter-framework.qmd,
executive_summary_v1.0.qmd) with FIMF Adapter Registry and the
UIAO Executive Brief.
- academy/image-pipeline-guide.qmd: drop link to orphaned
inbox/UIAO-Master-Document-Spec.md (kept prose mention; spec is
pending canon ingestion per the charter restoration plan).
- ROADMAP.qmd: ../substrate-status.qmd -> ../docs/substrate-status.qmd.
- access-plane (index + 08-access-plane): zero-trust.qmd -> .md.
- 03-phase2-governance-os.qmd: align findings/ relative path with the
convention used in 01-phase0 and 04-phase3 (../../../findings/).
- adapter-authoring-tutorial.md: drop refs to nonexistent
adapter-framework.qmd and adapter-development-guide.md; point
to the live adapters/adapter-contract.qmd instead.
- quarto-pipeline.qmd 12.4: replace multiline table whose cells
contained literal "::: {.callout-...}" (which triggered 8x the
Pandoc fenced-div parser warning) with a pipe-table where the
syntax examples are wrapped in inline-code backticks.
Each touched file re-rendered individually with no WARN/ERROR.
Does not address the DOCX-only image resource-path warnings
(filed as a follow-up; HTML render unaffected).
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
There was a problem hiding this comment.
Pull request overview
This PR cleans up Quarto documentation links and markdown constructs to eliminate render-log warnings (broken internal references and Pandoc fenced-div parser warnings), keeping the docs site build output warning-free.
Changes:
- Fixes multiple broken internal doc links by pointing to existing
.qmd/.mdtargets. - Updates modernization/access-plane references to the current
zero-trust.mdtarget. - Replaces a problematic table whose cells contained literal
:::with a pipe table using inline-code formatting to avoid Pandoc fenced-div warnings.
Reviewed changes
Copilot reviewed 8 out of 8 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| docs/404.qmd | Updates quick-link targets to existing docs and executive brief pages. |
| docs/academy/image-pipeline-guide.qmd | Removes a broken link to an orphaned inbox spec while preserving the informational reference in prose. |
| docs/customer-documents/ROADMAP.qmd | Fixes the Substrate Status relative link to the correct docs location. |
| docs/customer-documents/modernization/access-plane/index.qmd | Updates Zero Trust leaf link to the live zero-trust.md document. |
| docs/customer-documents/modernization/client-server-to-hybrid-cloud/08-access-plane.qmd | Updates Zero Trust cross-reference link to zero-trust.md. |
| docs/customer-documents/modernization/uiao-modernization-program/03-phase2-governance-os.qmd | Corrects the relative path to the docs/findings/ location for FINDING-002. |
| docs/customer-documents/substrate/platform-tooling/quarto-pipeline.qmd | Replaces the warning-triggering table with a pipe table and inline-code examples. |
| docs/docs/adapter-authoring-tutorial.md | Replaces dead adapter framework/guide references with a live adapter contract reference. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Resolves all
WARNentries from the most recent Quarto render run on PR #317 (build succeeded, but the log carried 5 broken-link warnings, 1 broken-link insideadapter-authoring-tutorial.md, and 8 Pandoc fenced-div parser warnings). Each touched file was re-rendered individually with noWARN/ERRORoutput after the fix.What changed
docs/404.qmdadapter-framework.qmd,executive_summary_v1.0.qmd) with13_FIMF_AdapterRegistry.qmdandcustomer-documents/executive-briefs/uiao-executive-brief.qmd.docs/academy/image-pipeline-guide.qmdinbox/UIAO-Master-Document-Spec.md; kept prose mention (spec is pending canon ingestion per the charter restoration plan).docs/customer-documents/ROADMAP.qmd../substrate-status.qmd→../docs/substrate-status.qmd.customer-documents/modernization/access-plane/index.qmdzero-trust.qmd→zero-trust.md.customer-documents/modernization/client-server-to-hybrid-cloud/08-access-plane.qmdzero-trust.qmd→zero-trust.md.customer-documents/modernization/uiao-modernization-program/03-phase2-governance-os.qmd../../findings/...→../../../findings/...(matches the convention in 01-phase0 and 04-phase3).customer-documents/substrate/platform-tooling/quarto-pipeline.qmd§12.4:::(which tripped the Pandoc fenced-div parser 8 times) with a clean pipe-table where the syntax examples are wrapped in inline-code backticks.docs/docs/adapter-authoring-tutorial.mdadapter-framework.qmdandadapter-development-guide.md; pointed to the liveadapters/adapter-contract.qmdinstead.Not addressed (filed for follow-up)
--to docx). HTML render is unaffected. Different class of fix (Quarto config /resource-path) — left out to keep this PR's scope tight.Test plan
--to htmlrender of the changed files completes with noWARNorERRORlines (verified locally).renderjob) passes with the previously-flaggedWARN: Unable to resolve link target:and Pandocfenced divlines absent from the log.link-checkCI job passes.🤖 Generated with Claude Code