Reworded MDX Example
Let's explore an example of MDX content.
Here is some bold and italic text.
This is a link to Google.
function helloWorld() {
 console.log("Hello, world!");
}

This is a list:
- Item 1
- Item 2
- Item 3
```mdx
---
title: "MDX Sample, Rephrased"
description: "A rephrased version of an MDX file for demonstration."
---
 
 # MDX Sample, Rephrased
 
 Consider this MDX content as an illustration.
 
 Presented here is text with **strong** emphasis and *cursive* styling.
 
 You can find a [Google link here](https://www.google.com).
 
 ```javascript
 function helloWorld() {
  console.log("Hello, world!");
 }

The following is a list:
- First item
- Second item
- Third item