Home



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

Welcome to My MDX Page

This is an introduction to MDX, which allows you to write JSX within Markdown. It's pretty powerful!

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


helloWorld();

Here's an image:

You can also create links, like to Google.

Let's add a list:

  • Item 1
  • Item 2
  • Item 3

And some bold and italic text.

Finally, a table:

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


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


# Greetings! This is My MDX Page


MDX is introduced here; it gives you the ability to compose Markdown using JSX. It's quite robust!


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


helloWorld();

Take a look at this image:

You are able to generate hyperlinks as well, for instance, to Google.

We will now include a list:

  • Item 1
  • Item 2
  • Item 3

Along with some bold and italic formatted text.

To conclude, a table:

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

Appearances