Product · Example · Markdown
Example Post: Markdown Features Showcase
This post showcases various Markdown features to verify rendering and styling across headings, lists, code blocks, and more.

This is an H1 Heading
This is a regular paragraph of text. It demonstrates basic text formatting and readability. We can also include bold text and italic text within a paragraph.
This is an H2 Subheading
Here's another paragraph. It's important to see how different paragraph styles flow.
This is an H3 Sub-subheading
This is a smaller paragraph. We should also test links to ensure they are rendered correctly.
This is an H4 Heading (less common in articles)
Here's an unordered list:
- First item in an unordered list
- Second item
- Nested item 1
- Nested item 2
- Third item
And here's an ordered list:
- First item in an ordered list
- Second item
- Nested ordered item 1
- Nested ordered item 2
- Third item
This is a blockquote. It can span multiple lines. Blockquotes are great for highlighting important information or citations.
This is a paragraph preceding a code block.
// This is a code block
function greet(name) {
console.log(`Hello, ${name}!`);
}
greet("World");
And this is a paragraph following a code block.
We can also include inline code, like console.log("hello"), within a regular paragraph.
Here's an image:

This content layer is now ready for your own editorial workflow. Make sure to update generateStaticParams if your content source changes.
