creating wiki pages

published: August 1, 2025 โ€ข

This guide explains how to create new wiki pages for this site.

Quick Start

  1. Create a new .md file in src/content/wiki/
  2. Add the required frontmatter
  3. Write your content
  4. Link to related pages

Required Frontmatter

Every wiki page needs this frontmatter:

wiki-page.md yaml
---
title: 'Your Page Title'
description: 'Brief description of the page'
category: 'Technical' # or Meta, Research, etc.
publishDate: 2025-08-01
updatedDate: 2025-08-01
tags: ['relevant', 'tags']
relatedPages: ['path/to/other-page']
---

File Naming

  • Use lowercase with hyphens: my-new-page.md
  • Keep names short but descriptive
  • The filename becomes the URL slug

Categories

Choose from:

  • Meta - Documentation about the site itself
  • Technical - Programming and technical topics
  • Research - Academic and research notes
  • Projects - Project-specific documentation

Linking Pages

  • Use relatedPages in frontmatter to connect topics
  • Reference other pages with standard markdown links: [text](/wiki/page-slug)

Best Practices

  • Keep pages focused on one topic
  • Use clear, descriptive titles
  • Include relevant tags for search
  • Link to related content
  • Update the updatedDate when editing
โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•
on this page