Testing Markdown Elements
Reading time: 5 min read
Main Heading#
This is a paragraph with bold text, italic text, and inline code. Let's see how it renders.
Secondary Heading#
Here's a bullet list:
- Item 1
- Item 2
- Item 3 with bold formatting
Tertiary Heading#
Here's a numbered list:
- First item
- Second item
- Third item with italic formatting
Fourth Level Heading#
This is a blockquote. It should have a special styling.
Code Blocks
// This is a code block
function sayHello() {
console.log("Hello, world!");
}
Tables
| Header 1 | Header 2 | Header 3 |
|---|---|---|
| Cell 1 | Cell 2 | Cell 3 |
| Cell 4 | Cell 5 | Cell 6 |
Links#
Images#
Unfortunately, we can't test images properly in this demo file since we don't have access to actual images.
Nested Lists#
- First level
- Nested bullet
- Another nested bullet
- Back to first level
- Nested number
- Another nested number
Task Lists#
- Completed task
- Incomplete task
That's it! If all these elements render properly, our MDX styling is working correctly.