fix: use pathname:// for install_picoclaw.py links to prevent webpack hash - #52
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR fixes broken documentation links to static/scripts/maixcam/install_picoclaw.py caused by Docusaurus asset/link processing (hashing + trailingSlash: true), by switching the affected Markdown links to use the pathname:/// URL scheme so they point directly at the file under static/.
Changes:
- Updated
install_picoclaw.pylinks from/scripts/maixcam/install_picoclaw.pytopathname:///scripts/maixcam/install_picoclaw.pyin the English docs. - Applied the same link change across Chinese (zh-Hans) and Portuguese (pt-BR) localized docs.
Reviewed changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| docs/installation/maixcam.md | Switches the MaixCam install script link to pathname:/// to avoid hashed/trailed URLs. |
| docs/installation/licheervnano.md | Switches the LicheeRV Nano install script link to pathname:/// to avoid hashed/trailed URLs. |
| i18n/zh-Hans/docusaurus-plugin-content-docs/current/installation/maixcam.md | Applies the same pathname:/// link fix in the zh-Hans MaixCam doc. |
| i18n/zh-Hans/docusaurus-plugin-content-docs/current/installation/licheervnano.md | Applies the same pathname:/// link fix in the zh-Hans LicheeRV Nano doc. |
| i18n/pt-BR/docusaurus-plugin-content-docs/current/installation/maixcam.md | Applies the same pathname:/// link fix in the pt-BR MaixCam doc. |
| i18n/pt-BR/docusaurus-plugin-content-docs/current/installation/licheervnano.md | Applies the same pathname:/// link fix in the pt-BR LicheeRV Nano doc. |
💡 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.
Problem
Clicking the
install_picoclaw.pylink redirects to/assets/files/install_picoclaw-<hash>.py/(404) because Docusaurus processes static file links via webpack, appending a content hash and a trailing slash (due totrailingSlash: true).Fix
Replace
/scripts/maixcam/install_picoclaw.pywithpathname:///scripts/maixcam/install_picoclaw.pyin all affected files. Thepathname://protocol tells Docusaurus to skip asset processing and link directly to the file in thestatic/directory.Files changed
docs/installation/maixcam.mddocs/installation/licheervnano.mdi18n/zh-Hans/.../maixcam.mdi18n/zh-Hans/.../licheervnano.mdi18n/pt-BR/.../maixcam.mdi18n/pt-BR/.../licheervnano.md