Reworded MDX Example
Let's explore a basic example of MDX content.
You can find more information on the MDX website.
Here's an example of an unordered list:
- Item 1
- Item 2
- Item 3
And here's an example of an ordered list:
- First item
- Second item
- Third item
```mdx
---
title: "MDX Example, Now Restated"
description: "A rephrased instance of an MDX file."
---
# MDX Example, Now Restated
Consider this simple illustration showcasing MDX's capabilities.
## Code Segments
Behold, a code segment is presented here:
```javascript
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet("World"));
For further details, visit the MDX website.