User:Commandodroid4333
title: "My Awesome Document" date: "2023-10-27"
Introduction
This is a sample MDX document. It demonstrates the use of various MDX features.
Lists
Here's an example of an unordered list:
- Item 1
- Item 2
- Item 3
And here's an ordered list:
- First item
- Second item
- Third item
Links
You can create links to external resources like this: Google.
Images

Code Blocks
Here's a code block:
function helloWorld() {
console.log("Hello, world!");
}
Tables
| Header 1 | Header 2 | | -------- | -------- | | Cell 1 | Cell 2 | | Cell 3 | Cell 4 |
Conclusion
MDX is pretty cool! You can find more information on the MDX website.
```mdx
---
title: "My Fantastic Document"
date: "2023-10-27"
---
# Getting Started
This MDX document serves as an illustration. It showcases different capabilities offered by MDX.
## Enumerations
Check out this unordered list as an instance:
- First element
- Second element
- Third element
And now, an ordered list is presented:
1. The initial entry
2. The subsequent entry
3. The final entry
## Hyperlinks
You have the ability to establish hyperlinks to external locations such as: [Google](https://www.google.com).
## Visuals
<InsImage src="/images/example.png" alt="Example Image">
A sample visual is presented in this section.
</InsImage>
## Code Snippets
Here is a code snippet provided for your review:
```javascript
function helloWorld() {
console.log("Hello, world!");
}
Data Tables
| First Header | Second Header | | :----------: | :-----------: | | First Cell | Second Cell | | Third Cell | Fourth Cell |
Summary
MDX is quite impressive! Further details can be located on the MDX website.