creating wiki pages
on this page
This guide explains how to create new wiki pages for this site.
Quick Start
- Create a new
.md
file insrc/content/wiki/
- Add the required frontmatter
- Write your content
- 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
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ