M.

Markdown Style Guide

A comprehensive demo post to showcase how markdown elements render in the Astro blog.

Heading 1

Heading 2

Heading 3

This is a bold word, this is italic, and this is inline code.

Here’s a paragraph of filler text to check line spacing.
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Another line to see how paragraphs stack.


Lists

Unordered List

  • Item one
  • Item two
    • Nested item
    • Another nested
  • Item three

Ordered List

  1. First
  2. Second
    1. Nested first
    2. Nested second
  3. Third

Blockquotes

“This is a blockquote. It’s great for highlighting quotes or notes.”
— Someone Smart


Code Blocks

Here’s a fenced code block:

function greet(name) {
  return `Hello, ${name}!`;
}
console.log(greet("World"));

Here’s a link to Astro.

And here’s an image:

Placeholder Image

Inline image example: Tiny.


Tables

SyntaxDescription
HeaderTitle
CellContent
Cell 2More

Horizontal Rule

That line above is a horizontal rule. Below is another:


End of style guide.