Writing in Markdown — A Practical Guide

·1 min read·markdownwritingtips
[Ad · article-top · horizontal]

What is Markdown?

Markdown is a lightweight markup language designed to be readable as plain text and convertible to HTML. John Gruber created it in 2004 as a way to write for the web without touching HTML tags.

Core Syntax

Text Formatting

**bold**, *italic*, ~~strikethrough~~, `inline code`

Renders as: bold, italic, strikethrough, inline code

[Link text](https://example.com)
![Alt text](image.jpg)

Lists

- Unordered item
- Another item
  - Nested item

1. Ordered item
2. Second item

Code Blocks

Fenced code blocks with syntax highlighting:

```javascript
const greet = (name) => `Hello, ${name}!`
```

Blockquotes

Good writing is rewriting. — Truman Capote

Tables

Column AColumn BColumn C
Cell 1Cell 2Cell 3
Cell 4Cell 5Cell 6

Tips for Blog Posts

  1. Start with front matter — always fill in title, date, and summary
  2. Use headings — they build the table of contents automatically
  3. Keep summaries short — one or two sentences max
  4. Tag generously — tags power the search feature
[Ad · article-mid · rectangle]
[Ad · article-bottom · horizontal]
← Back to tech