Welcome to My MDX Document
This is a simple MDX document. It includes headings, paragraphs, and code blocks.
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet("World"));
Here's an image:

You can also create links like this: Example Link.
And lists:
- Item 1
- Item 2
- Item 3
Let's add some bold and italic text.
Finally, let's include a table:
| Header 1 | Header 2 | | -------- | -------- | | Cell 1 | Cell 2 | | Cell 3 | Cell 4 |
```mdx
---
title: 'My MDX Document'
description: 'A demonstration of rephrasing within an MDX document.'
---
# Greetings! Here's My MDX Document
This MDX document is quite basic. It contains sections like titles, text, and code snippets.
```javascript
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet("World"));
Check out this picture:

You are able to make hyperlinks such as: Example Link.
Also, lists are possible:
- Item 1
- Item 2
- Item 3
We can include text that is bold and italicized.
To conclude, here's a table:
| Header 1 | Header 2 | | -------- | -------- | | Cell 1 | Cell 2 | | Cell 3 | Cell 4 |