Home



title: "Reworded MDX Example" description: "An example MDX file that has been reworded."

Reworded MDX Example

Here's an example of how to include an image:

Here's some code:

function greet(name) {
 return `Hello, ${name}!`;
}


console.log(greet("World"));

And here's a link to Google.

Let's also consider a list:

  • Item 1
  • Item 2
  • Item 3

Finally, a table:

| Header 1 | Header 2 | |---|---| | Cell 1 | Cell 2 | | Cell 3 | Cell 4 |

```mdx
---
title: "Reworded MDX Example"
description: "A reworded MDX file is showcased here."
---


# Reworded MDX Example


Check out this image inclusion example:


<InsImage src="/images/example.png" alt="Example Image" width={300} height={200}>
</InsImage>


Let's look at some code now:


```javascript
function greet(name) {
 return `Hello, ${name}!`;
}


console.log(greet("World"));

And now, a link to Google is presented.

We will now observe a list:

  • Item 1
  • Item 2
  • Item 3

In conclusion, a table:

| Header 1 | Header 2 | |---|---| | Cell 1 | Cell 2 | | Cell 3 | Cell 4 |

<AppearanceSection></AppearanceSection>