This static site generator supports many extended markdown features beyond the basics. Let’s explore what’s available!
We use highlight.js for beautiful code syntax highlighting:
def fibonacci(n):
"""Generate Fibonacci sequence up to n terms"""
a, b = 0, 1
for _ in range(n):
print(a, end=' ')
a, b = b, a + b
print()
fibonacci(10)
.window {
margin: 20px auto;
max-width: 800px;
border: 2px solid #000;
}
.title-bar {
background: #000;
color: #fff;
padding: 4px;
}
You can create tables with alignment:
| Left Aligned | Center Aligned | Right Aligned |
|---|---|---|
| Cell 1 | Cell 2 | Cell 3 |
| Cell 4 | Cell 5 | Cell 6 |
| Cell 7 | Cell 8 | Cell 9 |
| Feature | Description | Status |
|---|---|---|
| Basic Tables | Simple table support | ✓ |
| Multi-line | Tables with line breaks and complex content | ✓ |
| Alignment | Left, center, right alignment | ✓ |
Perfect for TODO lists and checklists:
You can add footnotes[1] to your content. They’re great for references[2] and additional information.
Use the kbd plugin to show keyboard shortcuts:
“The best way to predict the future is to invent it.”
— Alan Kay
This is a longer blockquote that demonstrates how quoted text appears in the retro Apple System 6 design. It maintains readability while fitting the overall aesthetic.
You can use bold text, italic text, strikethrough, and inline code.
Combine them: bold and italic, bold with code, etc.
You can also add images:

You can create visual breaks with horizontal rules:
That’s just a small sample of what’s possible with the extended markdown support in this generator!