Markdown Guide
Supported Syntax
Dockero supports standard Markdown plus some extensions.
Headings
Use # for headings:
# Heading 1
## Heading 2
### Heading 3
Code Blocks
Syntax-highlighted code blocks:
function greet(name) {
console.log(`Hello, ${name}!`);
}
greet('World');
Tables
| Feature | Status |
|---|---|
| Markdown | ✅ |
| Search | ✅ |
| Dark Mode | ✅ |
Callouts
Note: This is an important callout!