Getting Started
Welcome to our wiki! This guide will help you understand how to use and contribute to this documentation.
Creating New Pages
- Navigate to the
src/pages
directory - Create a new
.md
or.mdx
file - Add frontmatter at the top of your file:
--- layout: ../layouts/Layout.astro title: Your Page Title ---
- Write your content using Markdown
Markdown Features
You can use all standard Markdown features:
Code Blocks
function hello() {
console.log("Hello, Wiki!");
}
Tables
Feature | Description |
---|---|
Markdown | Write content easily |
MDX | Use components in Markdown |
SSR | Server-side rendering |
Lists
- Unordered lists
- With multiple items
- And nested items
- As deep as you need
- And nested items
- Ordered lists
- Are also supported
- And easy to use
Next Steps
Check out the Features page to learn more about what you can do with this wiki.