Add new page
If documentation section already exists, add .mdx files to create new pages:
---layout: /src/layouts/MarkdownDocLayout.astrotitle: Documentationdescription: Some descriptionauthor: microfossil-guy---
Add new page
If documentation section already exists, add .mdx files to create new pages:
---layout: /src/layouts/MarkdownDocLayout.astrotitle: Documentationdescription: Some descriptionauthor: microfossil-guy---Full documentation
See full documentation
Contribute to the websiteAdd new documentation section
Follow this structure to create a new documentation section:
Content of index.mdx file:
---title: New documentation sectiondescription: Some descriptionhero: tagline: Some description image: file: /src/assets/path/to/image.png---For the content of doc-file.mdx check the Add new page section above ☝️
Edit astro.config.mjs file:
integrations: [ starlight({ ... plugins: [ starlightSidebarTopics([ ..., { label: 'New doc section', link: '/new-doc-section/', icon: 'open-book', items: [{ label: 'Documentation', autogenerate: { directory: 'new-doc-section/doc'}}], }, ]), ...