Reworded MDX Example
Let's look at how to include images in MDX documents.

Here is a code block:
function helloWorld() {
console.log("Hello, world!");
}
You can find more information about MDX here.
Finally, let's discuss lists:
- Item 1
- Item 2
- Item 3
```mdx
---
title: Rewritten MDX Example
description: A demonstration MDX file that's been rewritten.
---
# Rewritten MDX Example
We will now examine the method for embedding images within MDX files.
<InsImage src="/images/example.png" alt="Example Image" width={300}>
An image is displayed here as an illustration.
</InsImage>
The following is a code snippet:
```javascript
function helloWorld() {
console.log("Hello, world!");
}
Additional details regarding MDX are available here.
In conclusion, let's consider lists:
- First Item
- Second Item
- Third Item