Home



title: "Example MDX File" date: "2023-10-27"

This is an example MDX file showcasing various features. It includes text, code blocks, and images.

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

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

Here's an image:

You can also create links.

Let's talk about lists:

  • Item 1
  • Item 2
  • Item 3

And numbered lists:

  1. First item
  2. Second item
  3. Third item

Finally, let's add some emphasized and strongly emphasized text.

```mdx
---
title: "MDX File Sample"
date: "2023-10-27"
---

This MDX document serves as a demonstration, highlighting different capabilities. Within it, you'll find textual content, code snippets, and visuals.

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

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

Behold, a picture:

Feel free to follow these hyperlinks.

Now, consider unordered lists:

  • Item 1
  • Item 2
  • Item 3

And enumerated lists, too:

  1. First item
  2. Second item
  3. Third item

To conclude, we'll insert some italicized and bold text.

Appearances