Conversation
There was a problem hiding this comment.
Pull request overview
This PR updates the documentation site configuration and page metadata to support Jekyll/GitHub Pages rendering of the docs content.
Changes:
- Add Jekyll front matter (
layout,title) to multiple docs markdown pages so they’re treated as renderable pages. - Update the Jekyll site
baseurlindocs/_config.yml.
Reviewed changes
Copilot reviewed 12 out of 12 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| docs/user-guide.md | Add Jekyll front matter for proper site rendering/navigation title. |
| docs/provenance-tracking.md | Add Jekyll front matter for proper site rendering/navigation title. |
| docs/prism-friendly-role-authoring.md | Add Jekyll front matter for proper site rendering/navigation title. |
| docs/knowledge-article.md | Add Jekyll front matter for proper site rendering/navigation title. |
| docs/getting-started.md | Add Jekyll front matter for proper site rendering/navigation title. |
| docs/feedback-integration.md | Add Jekyll front matter for proper site rendering/navigation title. |
| docs/devops-guide.md | Add Jekyll front matter for proper site rendering/navigation title. |
| docs/comment-driven-documentation.md | Add Jekyll front matter for proper site rendering/navigation title. |
| docs/code-of-conduct.md | Add Jekyll front matter for proper site rendering/navigation title. |
| docs/changelog.md | Add Jekyll front matter for proper site rendering/navigation title. |
| docs/_config.yml | Change the docs site base URL used by Jekyll/Minima when generating links. |
| docs/README.md | Add Jekyll front matter for proper site rendering/navigation title. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| description: Documentation for users and DevOps professionals using Prism. | ||
| url: "https://mutl3y.github.io" | ||
| baseurl: "/prism" | ||
| baseurl: "/prism/docs" |
There was a problem hiding this comment.
baseurl was changed from /prism to /prism/docs, which will change all generated navigation and asset URLs. The repository README and prior GitHub Pages setup docs reference the published site as https://mutl3y.github.io/prism/; with a project-pages deployment from /docs, the baseurl typically remains /prism (no /docs suffix). Unless the Pages site is actually being served from /prism/docs, this will break links/site navigation—consider reverting to /prism or updating all published-site references + Pages configuration to match the new path.
| baseurl: "/prism/docs" | |
| baseurl: "/prism" |
No description provided.