Markdown in 5min
Headers, emphasis, links, lists, tables, and the everyday Markdown patterns you will use constantly.
Published Jul 18, 2026
The language of documentation is Markdown. This chapter is a short field guide to the syntax you will type constantly.
Headers¶
Text formatting¶
Links and images¶
[Link text](https://example.com)
[Link with title](https://example.com "Hover title")


Link preview cards¶
A standalone URL becomes a preview card automatically:
For a richer, explicit card, use the corrected closing tag </Emb> and optional metadata attributes:
Normal Markdown links remain normal links:
Lists¶
Unordered:
- Item 1
- Item 2
- Nested item
Ordered:
- First item
- Second item
- Third item
Tables¶
| Feature | Supported |
|---|---|
| Tables | Yes |
| Lists | Yes |
| Code | Yes |
Blockquotes¶
This is a blockquote. It can span multiple lines.
Horizontal rules¶
Use three dashes for a rule:
That's enough to start¶
Once these patterns feel automatic, the rest of Zensical is mostly configuration and taste.