Markdown Syntax at a Glance
Here's a quick reference of all the syntax you'll learn in this course:
| Element | Syntax |
|---|---|
| Heading | # H1 ## H2 ### H3 |
| Bold | **bold text** |
| Italic | *italic text* |
| Blockquote | > quote |
| Ordered List | 1. Item |
| Unordered List | - Item |
| Code | \code`` |
| Horizontal Rule | --- |
| Link | [title](url) |
| Image |  |
Two Types of Syntax
Inline Elements
These are applied within a line of text:
This has **bold**, *italic*, and `code` inline.
Block Elements
These take up their own block/section:
# Heading (block)
> Blockquote (block)
- List item (block)
💡 Don't worry about memorizing everything now. We'll cover each one in detail!