Home



title: "My MDX Document" date: "2023-10-27"

Welcome to My MDX Page

This is a basic MDX document. It demonstrates how to combine Markdown with JSX components.

Here's an example of an image:

function add(a, b) {
 return a + b;
}


console.log(add(5, 3));

You can also include links.

Let's add some bold and italic text.

Finally, here's a list:

  • Item 1
  • Item 2
  • Item 3
```mdx
---
title: "My MDX Document"
date: "2023-10-27"
---


# Greetings! This is My MDX Page


This simple MDX file illustrates the merging of Markdown and JSX elements.


Check out this image as an illustration:


<InsImage src="/images/example.png" alt="Example Image">
</InsImage>


```javascript
function add(a, b) {
 return a + b;
}


console.log(add(5, 3));

Feel free to explore these links here.

Now, let's include some italicized and bolded text.

In conclusion, here is a list:

  • Item 1
  • Item 2
  • Item 3

Appearances