Quick start
Create a new site, add a page, build it, and start the local preview server:
simiki3 init my-wiki
simiki3 new "First page" --path my-wiki --category intro
simiki3 build my-wiki
simiki3 serve my-wiki --watch
The generated site has this layout:
my-wiki/
├── _config.yml
├── attach/
├── content/
│ └── intro/
├── output/
└── themes/
└── simple2/
Write Markdown source files under content/. Simiki3 writes the generated HTML, CSS, feed, and copied attachments under output/.
Create a page manually
Every page can begin with YAML front matter:
---
title: Project notes
date: 2026-08-01
category: notes
---
# Project notes
Markdown content goes here.
The file extension defaults to .md. Use the configuration reference to change the source or output directories.