Styled markdown preview showing headings, lists, tables, and code examples

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

  1. First step
  2. Second step
  3. Third step

Code Block

function greet(name) {
  return `Hello, ${name}!`;
}

console.log(greet('World'));

Table

Column 1Column 2Column 3
Row 1ARow 1BRow 1C
Row 2ARow 2BRow 2C

Horizontal Rule


Visit Astro’s website to learn more.