A Sample MDX Document
Let's explore the capabilities of MDX with a simple example. We will showcase text formatting, code blocks, and image inclusion.
Bold text and italic text are easily achieved. You can also create hyperlinks.
This demonstrates a basic MDX document. You can combine Markdown and React components for powerful content creation.
```mdx
---
title: "MDX Content Example"
description: "This MDX file serves as an illustration, exhibiting how to reword content without altering its original meaning."
---
# An MDX Document Example
We will delve into the features of MDX using a straightforward example. We'll highlight text styling, code segments, and embedding images.
## Styling Text
It's simple to make text **bold** or *italic*. Furthermore, you have the ability to generate [web links](https://example.com).
## Code Snippets
Check out this piece of JavaScript code:
```javascript
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet("World"));