Reworded MDX Example
Here's an example of how to include an image:

This is a link to Google.
Here's some code:
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet("World"));
This is a list:
- Item 1
- Item 2
- Item 3
This is bold text.
This is italic text.
```mdx
---
title: Modified MDX Demonstration
description: A demonstration MDX document that has undergone rephrasing.
---
# Modified MDX Demonstration
Let's look at an instance of image inclusion:
<InsImage src="/images/example.png" alt="Example Image" width={300} height={200}>
An example image
</InsImage>
Check out this hyperlink to [Google](https://www.google.com).
Here is a segment of code:
```javascript
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet("World"));
Consider the following enumeration:
- Item 1
- Item 2
- Item 3
This text is rendered as bold.
This text is rendered as italic.