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:

  1. Lists
  • Unordered
  • Items
  1. Code
  • Inline const test = "hello"
  • Block syntax highlighting

Code Example

Here's a JavaScript code block with syntax highlighting:

javascript
function greeting(name) { return `Hello, ${name}!`; } // Call the function console.log(greeting('World'));

Sample Image

Visit Next.js to learn more about the framework.

Table Example

FeatureSupported
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!")