What is Markdown?
Markdown is a lightweight markup language created by John Gruber in 2004. It lets you format text using simple, readable syntax that converts to HTML.
Why Use Markdown?
- Simple — easy to learn, easy to read
- Portable — works everywhere, plain text files
- Fast — write formatted content without a mouse
- Universal — supported by hundreds of apps and platforms
How It Works
You write plain text with special characters like #, *, and - to indicate formatting. A Markdown processor then converts it to HTML.
# This is a heading
This is a **bold** word and this is *italic*.
Becomes:
This is a heading
This is a bold word and this is italic.
💡 Throughout this course, you'll learn every Markdown feature step by step with hands-on practice!