Markdown Quick Reference
Practical quick reference for rich markdown syntax used in this knowledge base.
Markdown Quick Reference
Core Frontmatter
title: Your Title
created: "2026-03-08T12:00:00+08:00"
updated: "2026-03-08T12:00:00+08:00"
topic: programming/example
tags: [example, notes]
status: evergreen
summary: one-line summary
Recommended Patterns
- Use
topicas a path (e.g.programming/rust/async). - Keep tags compact and retrievable.
- Add at least one code block, one diagram, and one formula for technical notes.
Minimal Mermaid Template
graph TD
A[Input] --> B[Transform]
B --> C[Output]
Minimal Chart Template
{
"type": "bar",
"data": {
"labels": ["A", "B", "C"],
"datasets": [
{ "label": "Score", "data": [3, 7, 5] }
]
}
}