Hello World
This is a summary of my first blog post using Next.js and Contentlayer.
January 8, 2025
•1 min read
Welcome to My MDX Test
This is a bold text and this is italicized text. You can also use underscores for emphasis.
Markdown Features
Here's a quick list of markdown features:
- Lists
- Unordered
- Items
- Code
- Inline
const test = "hello"
- Block syntax highlighting
Code Example
Here's a JavaScript code block with syntax highlighting:
javascriptfunction greeting(name) { return `Hello, ${name}!`; } // Call the function console.log(greeting('World'));
Images and Links
Visit Next.js to learn more about the framework.
Table Example
Feature | Supported |
---|---|
Tables | ✅ |
Lists | ✅ |
Code | ✅ |
Blockquotes
This is a blockquote example. It can span multiple lines.
Other Elements
Horizontal rule:
Inline code like const x = 100;
is also supported.
python# Python example def hello(): print("Hello from Python!")