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:
- First numbered item
- Second numbered item
- Third numbered item, which is a bit longer to see how line wrapping behaves inside a list
- 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 A | Column B | Column C |
|---|---|---|
| Row 1 a | Row 1 b | Row 1 c |
| Row 2 a | Row 2 b | Row 2 c |
| Row 3 a | Row 3 b | Row 3 c |
Horizontal rules
Below this line is a horizontal rule.
And above this line was one.
Images
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.