Markdown Writing Guide
1 min read
This post demonstrates the Markdown styles supported on this site. Use it as a reference when writing new posts.
Heading level 2
Heading level 3
Body text: bold, italic, strikethrough, inline code, and links.
Lists
Ordered list:
- First item
- Second item
- Third item
Unordered list:
- Apple
- Banana
- Orange
Task list:
- Set up the site
- Write the first post
- Ship it
Code blocks
Syntax highlighting with light and dark themes:
def fib(n: int) -> int:
"""Fibonacci sequence"""
a, b = 0, 1
for _ in range(n):
a, b = b, a + b
return a# Command line works too
npm run devTables
| Language | Use case | Difficulty |
|---|---|---|
| TypeScript | Frontend / full-stack | ★★★ |
| Python | Scripting / data | ★★ |
| Rust | Systems / performance | ★★★★★ |
Quotes and dividers
Good writing is rewriting.
That covers every style this site supports — feel free to copy this document as a template for new posts.