Blog
Notes and longer-form writing.
-
Markdown and Readability
Markdown stays readable as plain text while still rendering nicely on the web. That’s why it’s a good default for blog posts and docs.
Structure
Use headings to break up the page:
- H2 for main sections
- H3 for subsections
- Short paragraphs and lists for the rest
Lists don’t need to be long. Sometimes three items are enough:
- One idea per bullet.
- Keep sentences short.
- Prefer clarity over cleverness.
Code and emphasis
Use italics for emphasis and bold when you need it. For code, prefer
`backticks`inline and fenced blocks for snippets: -
Getting Started with Static Sites
A static site is just HTML, CSS, and maybe a little JavaScript. No database, no server-side runtime—just files.
Why static?
- Fast. Every page is a file. No queries, no rendering on request.
- Simple. Deploy anywhere: any host, CDN, or object storage.
- Stable. Fewer moving parts, fewer things to break.
A minimal stack
- Write content in Markdown.
- Run a generator (e.g. Hugo) to produce HTML.
- Upload the output folder. Done.
Inline
codeand fenced blocks work as expected: