Home



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

Welcome!

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

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


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

Here's an image:

Let's add a link to Google.

And some emphasized text.

A Subheading

This is some text under the subheading. We can also add bold text.

def add(a, b):
 return a + b


print(add(5, 3))

Finally, a list:

  • Item 1
  • Item 2
  • Item 3

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


# Greetings!


This MDX document serves as an illustration of merging Markdown with JSX.


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


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

Check out this picture:

Here is a Google link for you to follow.

And some text that is emphasized.

A Secondary Heading

Below the subheading, you'll find this text. Furthermore, we can include boldfaced text.

def add(a, b):
 return a + b


print(add(5, 3))

To conclude, a list is provided:

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