Reworded MDX Example
Let's look at an example of some MDX content.
This is a paragraph with some bold text and some italic text. We can also include links.
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet("World"));

Here's another paragraph. This one includes an image.
- Item 1
- Item 2
- Item 3
```mdx
---
title: "MDX Example, Now Paraphrased"
description: "A rephrased MDX file, maintaining the original meaning."
---
# MDX Example, Now Paraphrased
Consider the subsequent MDX content as an illustration.
This paragraph features **emphasized** text using boldface, and *oblique* text using italics. Furthermore, it's possible to incorporate [hyperlinks](https://example.com) here.
```javascript
function greet(name) {
return "Hello, " + name + "!";
}
console.log(greet("World"));

And now, a further paragraph. This one shows an embedded picture.
- First item
- Second item
- Third item