This post showcases the various Markdown styling options available in this blog.
Headings
Heading 1
Heading 2
Heading 3
Heading 4
Text Formatting
This is bold text, this is italic text, and this is strikethrough.
This is a link to Astro.
Lists
Unordered List
- First item
- Second item
- Third item
- Nested item 1
- Nested item 2
Ordered List
- First step
- Second step
- Third step
Code
Inline code: const hello = "world"
Code block:
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet('Astro'));
Blockquotes
This is a blockquote. It can span multiple lines.
Horizontal Rule
Tables
| Feature | Supported |
|---|---|
| Headings | ✅ |
| Lists | ✅ |
| Code | ✅ |
| Tables | ✅ |
That’s a quick overview of Markdown styling!