Markdown Features¶
This server supports rich Markdown with powerful extensions. See them all in action!
Headings¶
H1 Heading¶
H2 Heading¶
H3 Heading¶
H4 Heading¶
H5 Heading¶
H6 Heading¶
All headings automatically get: - Unique IDs for linking - Permalink icons on hover (๐) - Table of contents entries
Text Formatting¶
Bold text using **bold**
Italic text using *italic*
Bold and italic using ***both***
~~Strikethrough~~ using ~~strikethrough~~
Lists¶
Unordered Lists¶
- Item 1
- Item 2
- Nested item 2.1
- Nested item 2.2
- Item 3
Ordered Lists¶
- First item
- Second item
- Nested 2.1
- Nested 2.2
- Third item
Task Lists¶
- Completed task
- Another completed task
- Pending task
- Another pending task
Code Blocks¶
Inline Code¶
Use backticks for inline code like const x = 5;
Syntax Highlighted Blocks¶
Python example:
def fibonacci(n):
"""Calculate Fibonacci number."""
if n <= 1:
return n
return fibonacci(n-1) + fibonacci(n-2)
# Usage
result = fibonacci(10)
print(f"Fibonacci(10) = {result}")
JavaScript example:
// Async/await example
async function fetchData(url) {
try {
const response = await fetch(url);
const data = await response.json();
return data;
} catch (error) {
console.error('Error:', error);
}
}
Bash example:
# Docker deployment
docker build -t my-app .
docker run -p 8080:8080 my-app
# With environment variables
docker run \
-e DEBUG=true \
-e PORT=3000 \
-p 3000:3000 \
my-app
Tables¶
Tables are fully supported with automatic styling:
| Feature | Supported | Notes |
|---|---|---|
| Markdown | โ Yes | Full CommonMark support |
| Code Highlighting | โ Yes | Pygments-powered |
| Tables | โ Yes | You're looking at one! |
| Math | โ No | Not yet implemented |
| Mermaid | โ Yes | Diagrams supported |
Table with Alignment¶
| Left Aligned | Center Aligned | Right Aligned |
|---|---|---|
| Left | Center | Right |
| Text | Text | Text |
| More | More | More |
Links¶
Internal Links¶
Link to other pages: Quick Setup Guide
Link to sections: Back to Code Blocks
External Links¶
Visit GitHub or Python.org
External links open in new tabs automatically in the navigation.
Blockquotes¶
This is a blockquote. It can span multiple lines.
And even multiple paragraphs!
Pro Tip: Blockquotes are great for callouts, tips, and warnings.
Horizontal Rules¶
Separate content with horizontal rules:
Like that one above!
Images¶
Images are automatically handled:

Images support: - PNG, JPG, GIF, SVG - Automatic sizing - Responsive layout - Lazy loading
Footnotes¶
You can add footnotes1 to your documentation.
Another footnote2 reference.
Definition Lists¶
- Term 1
- Definition of term 1
- Term 2
- Definition of term 2
- Another definition for term 2
Abbreviations¶
The HTML specification is maintained by the W3C.
Advanced Features¶
Nested Lists with Code¶
- First step
print("Step 1") - Second step
print("Step 2") - Third step
Mixed Content¶
You can mix bold, italic, code, and links in tables:
| Feature | Code | Link |
|---|---|---|
| Bold | code |
link |
| Italic | more |
another |
Escaping¶
Need to show literal markdown? Escape with backslash:
**Not bold**
`Not code`
[Not a link](url)
Special Characters¶
The server handles special characters correctly:
- En dash: โ
- Em dash: โ
- Ellipsis: โฆ
- Quotes: "smart" 'quotes'
- Symbols: ยฉ ยฎ โข
- Arrows: โ โ โ โ
- Math: ยฑ ร รท โ โ
- Emojis: ๐ ๐ โ โ ๐ก
What's Not Supported?¶
Currently not implemented: - Math equations (LaTeX) - Embedded videos - Custom HTML components - MDX-style components
Everything else from CommonMark and popular extensions is supported!
Next Steps¶
- Navigation Features - Learn about sidebar and topbar
- LLMs.txt Support - AI assistant integration
- Examples - See real-world examples