Getting Started

Welcome to our wiki! This guide will help you understand how to use and contribute to this documentation.

Creating New Pages

  1. Navigate to the src/pages directory
  2. Create a new .md or .mdx file
  3. Add frontmatter at the top of your file:
    ---
    layout: ../layouts/Layout.astro
    title: Your Page Title
    ---
  4. Write your content using Markdown

Markdown Features

You can use all standard Markdown features:

Code Blocks

function hello() {
  console.log("Hello, Wiki!");
}

Tables

FeatureDescription
MarkdownWrite content easily
MDXUse components in Markdown
SSRServer-side rendering

Lists

  1. Ordered lists
  2. Are also supported
  3. And easy to use

Next Steps

Check out the Features page to learn more about what you can do with this wiki.