Sample post one

Published  •  Last updated

This first paragraph is a regular paragraph with bold text, italic text, strikethrough text, and inline code. It also includes a hyperlink to the Astro docs and an automatic link https://example.com.

A second-level heading

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Bold inside a paragraph. Italic inside a paragraph. A paragraph can also contain inline code spans and trailing punctuation.

A third-level heading

Below this heading is an unordered list:

  • First bullet point
  • Second bullet point with bold inside it
  • Third bullet point with a link
    • Nested bullet
    • Another nested bullet
  • Back to top level

A fourth-level heading

Now an ordered list:

  1. First numbered item
  2. Second numbered item
  3. Third numbered item, which is a bit longer to see how line wrapping behaves inside a list
  4. Fourth numbered item
Fifth-level heading
Sixth-level heading

Blockquotes

This is a blockquote. It typically gets a left border, italic text, or a slightly muted color depending on the styling. Long blockquotes will wrap onto multiple lines and should still feel like a quote.

A second paragraph inside the same blockquote.

A short, single-line quote attributed somewhere.

Code

Here is a fenced code block with a language hint:

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

const greeting = greet("world");
console.log(greeting);

And one without a language:

plain text code block
no syntax highlighting
just monospace

Tables

Column AColumn BColumn C
Row 1 aRow 1 bRow 1 c
Row 2 aRow 2 bRow 2 c
Row 3 aRow 3 bRow 3 c

Horizontal rules

Below this line is a horizontal rule.


And above this line was one.

Images

A small placeholder image

Keyboard input

Press Cmd + K to open the command palette.

Definition list (HTML inside markdown)

Term
Definition of the term.
Another term
Definition of the other term, slightly longer to see how it wraps.

Footnotes

Here is a sentence with a footnote reference1. And another one2.

Wrap-up

That’s about every standard markdown element. If something here looks off, that’s where to start tweaking the prose styles.

Footnotes

  1. This is the first footnote.

  2. This one has a named anchor instead of a number.