Authoring Notes
Posts
Put posts in:
content/posts/
Use lowercase filenames with letters, numbers, and dashes:
my-new-post.md
Each post can start with front matter:
---
title: My New Post
date: 2026-05-11
tags: podman, linux
pinned: true
---
Only title and date are normally needed. Use pinned: true when a post should stay at the top.
Images
Put images in:
site/media/
Then reference them from Markdown:

Remote images also work, but local images are better for privacy and long-term reliability.
Supported Markdown
Headings:
# Big Heading
## Section Heading
### Small Heading
Paragraphs are just normal text with a blank line between them.
Unordered lists:
- First item
- Second item
- Third item
Ordered lists:
1. First item
2. Second item
3. Third item
Code blocks:
//```text
//podman ps
//podman logs example
//```
Inline formatting:
Use `inline code` for commands.
Use **bold** for emphasis.
Use *italic* when needed.
Links:
[Podman](https://podman.io/)
[About](/page.php?name=about)
Images:


Not Supported Yet
- Tables
- Nested lists
- Footnotes
- Raw HTML
- Full Markdown inside complex list items
If those start to matter, swap the tiny built-in Markdown renderer for a small parser like Parsedown.