Reworded MDX Example
This is an introductory paragraph showcasing a basic sentence.
Let's look at some bold and italic text.
Here's a link to Google.
function greet(name) {
return `Hello, ${name}!`;
}

- A list item
- Another list item
- First numbered item
- Second numbered item
```mdx
---
title: Reworded MDX Example
description: This is an instance of MDX content that has been reworded.
---
# Reworded MDX Example
Consider this initial paragraph as a demonstration of a simple sentence.
Now, let's observe text that is **emphasized** and *oblique*.
This is a [hyperlink that directs to Google](https://www.google.com).
```javascript
function greet(name) {
return "Hello, " + name + "!";
}

- An item in a list
- Another item for the list
- The initial item, numbered
- The second item, also numbered