Reworded MDX Example
Here's some text. This is a simple example to show how MDX can be reworded while keeping the same meaning.
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet("World"));
Let's include an image:

And a link to Google.
Finally, let's add a list:
- Item 1
- Item 2
- Item 3
```mdx
---
title: Reworded MDX Example
description: A demonstration of MDX content rewriting, presented in a different way.
---
# Reworded MDX Example
Consider this text. The purpose of this straightforward example is to illustrate the rephrasing of MDX content without altering its original intent.
```javascript
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet("World"));
Now, let's incorporate a picture:

And a hyperlink to Google.
To conclude, we will incorporate a list:
- Item 1
- Item 2
- Item 3