Introduction
Let's begin by exploring how to incorporate images into your MDX documents.
You can also add hyperlinks to external websites within your MDX content.
Here's an example of how to create a link: Example Link
MDX also supports the inclusion of code blocks for displaying code snippets.
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet("World"));
Feel free to experiment with MDX and explore its capabilities!
```mdx
---
title: "My Reworded MDX Document"
description: "An MDX document example, phrased in a different way."
---
# Introduction
We will start by taking a look at different methods of embedding image files in your MDX files.
## Inserting Images
A useful method is to make use of the `<InsImage>` element. This element provides an easy way to embed image files within your written content.
For example, here is how you might use it:
```jsx
<InsImage src="/path/to/your/image.jpg" alt="Descriptive alt text" width={500}>
You are also capable of including links to external sites in your MDX files.
As an example, see how to create a hyperlink: Example Link