Markdown Styling Guide
This post is a reference guide to the Markdown elements supported in this blog. Use it to see how your content will look when rendered.
Headings
Heading 1
Heading 2
Heading 3
Heading 4
Text Formatting
Bold text, italic text, strikethrough, and inline code.
Blockquote
“The best way to get started is to quit talking and begin doing.” — Walt Disney
Lists
Unordered
- Item one
- Item two
- Nested item
- Another nested item
- Item three
Ordered
- First step
- Second step
- Third step
Code Block
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet('World'));
Table
| Column 1 | Column 2 | Column 3 |
|---|---|---|
| Row 1A | Row 1B | Row 1C |
| Row 2A | Row 2B | Row 2C |
Horizontal Rule
Links
Visit Astro’s website to learn more.