-
Notifications
You must be signed in to change notification settings - Fork 12
Reorganize subnet docs #23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| placeholder |
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,17 @@ | ||||||||||||||||||||||||||||||||||||||||||||||
| --- | ||||||||||||||||||||||||||||||||||||||||||||||
| title: Repos | ||||||||||||||||||||||||||||||||||||||||||||||
| --- | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| ## Subnet Repositories | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| Subnet Generator/Deployment Wizard: https://github.com/XinFinOrg/Subnet-Deployment | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| Subnet Blockchain Node: https://github.com/XinFinOrg/XDC-Subnet | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| Relayer: https://github.com/XinFinOrg/XDC-Relayer | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| Checkpoint Smart Contract (CSC): https://github.com/XinFinOrg/XDC-CSC | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| XDC-Zero Cross-chain Framework: https://github.com/XinFinOrg/XDC-Zero | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| Subnet UI: https://github.com/XinFinOrg/subnet-stats-service | ||||||||||||||||||||||||||||||||||||||||||||||
|
Comment on lines
+7
to
+17
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Wrap bare URLs with markdown link syntax. All repository URLs are flagged by markdownlint (MD034) as bare URLs. Wrap them in markdown link syntax to comply with linting standards. Apply this diff to wrap URLs as proper markdown links: ## Subnet Repositories
-Subnet Generator/Deployment Wizard: https://github.com/XinFinOrg/Subnet-Deployment
+[Subnet Generator/Deployment Wizard](https://github.com/XinFinOrg/Subnet-Deployment)
-Subnet Blockchain Node: https://github.com/XinFinOrg/XDC-Subnet
+[Subnet Blockchain Node](https://github.com/XinFinOrg/XDC-Subnet)
-Relayer: https://github.com/XinFinOrg/XDC-Relayer
+[Relayer](https://github.com/XinFinOrg/XDC-Relayer)
-Checkpoint Smart Contract (CSC): https://github.com/XinFinOrg/XDC-CSC
+[Checkpoint Smart Contract (CSC)](https://github.com/XinFinOrg/XDC-CSC)
-XDC-Zero Cross-chain Framework: https://github.com/XinFinOrg/XDC-Zero
+[XDC-Zero Cross-chain Framework](https://github.com/XinFinOrg/XDC-Zero)
-Subnet UI: https://github.com/XinFinOrg/subnet-stats-service
+[Subnet UI](https://github.com/XinFinOrg/subnet-stats-service)📝 Committable suggestion
Suggested change
🧰 Tools🪛 markdownlint-cli2 (0.18.1)7-7: Bare URL used (MD034, no-bare-urls) 9-9: Bare URL used (MD034, no-bare-urls) 11-11: Bare URL used (MD034, no-bare-urls) 13-13: Bare URL used (MD034, no-bare-urls) 15-15: Bare URL used (MD034, no-bare-urls) 17-17: Bare URL used (MD034, no-bare-urls) 🤖 Prompt for AI Agents |
||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
Verify relative navigation paths resolve correctly.
The navigation tiles use relative paths (
../components/subnet_chain/and../install_guide/launch_subnet/) to link to subnet documentation. Confirm these paths resolve correctly in the generated MkDocs site based on the restructured navigation hierarchy.Run the following script to verify the markdown files exist and path references are valid:
Also applies to: 47-47
🏁 Script executed:
Length of output: 253
Fix relative navigation paths to use correct directory traversal.
The relative paths use
../which incorrectly navigate to the root level instead of staying within the subnet directory. Update lines 43 and 47 to use./prefix:../components/subnet_chain/to./components/subnet_chain/../install_guide/launch_subnet/to./install_guide/launch_subnet/From the generated MkDocs site at
/subnet/overview/, the../prefix goes up to the root level, causing links to resolve to/components/subnet_chain/and/install_guide/launch_subnet/instead of/subnet/components/subnet_chain/and/subnet/install_guide/launch_subnet/. The./prefix correctly keeps navigation within the subnet namespace.🤖 Prompt for AI Agents