Home



title: "My Cool Doc" description: "An example MDX document."

Welcome to My Cool Doc

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

Here's an example of an image:

And here's some code:

function helloWorld() {
 console.log("Hello, world!");
}

You can also include links.

Let's add a list:

  • Item 1
  • Item 2
  • Item 3


```mdx
---
title: "My Cool Doc"
description: "A sample MDX file."
---


# Greetings! This is My Cool Doc


This document is a simple example of MDX. It showcases the capability of blending Markdown with JSX components.


Check out this image:


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


Here is a code snippet:


```javascript
function helloWorld() {
 console.log("Hello, world!");
}

You are able to incorporate hyperlinks as well.

Now, let's incorporate a list:

  • First Item
  • Second Item
  • Third Item
<AppearanceSection></AppearanceSection>