Getting Started Guide

Learn how to use and customize your wiki

guide tutorial

Getting Started Guide

This guide will help you understand how to use and customize your new wiki.

Creating Pages

To create a new wiki page:

  1. Add a new .md file to src/content/pages/
  2. Include frontmatter with at least a title
  3. Write your content in Markdown below the frontmatter

Example Page Structure

---
title: "My New Page"
description: "A brief description of the page"
tags: ["example", "demo"]
category: "Examples"
---

# My New Page

Your content here...

Frontmatter Options

  • title: Page title (required)
  • description: Meta description for SEO
  • tags: Array of tags for categorization
  • category: Page category for organization
  • order: Number for sidebar ordering
  • draft: Set to true to hide from navigation
  • breadcrumbs: Custom breadcrumb navigation

The sidebar navigation is automatically generated from your pages based on:

  • Categories group related pages
  • Order determines display sequence
  • Draft pages are hidden from navigation

SEO Features

Every page automatically includes:

  • Meta title and description
  • Open Graph tags
  • Structured data
  • Sitemap generation