- Item 1
- Item 2
- Item 3
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet("World"));
This document also demonstrates how to use links: Example Link.
---
title: "MDX Document Sample"
date: "2023-10-27"
---
This is an MDX document for demonstration purposes, exhibiting a range of capabilities. It has titles, text blocks, enumerated items, and code examples.
## Second Level Title
A text paragraph is presented here. Within it, we have the ability to use **strong** and *emphasized* words.
<InsImage src="/images/example.png" alt="Example Image"></InsImage>
### Third Level Title
* First Item
* Second Item
* Third Item
```javascript
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet("World"));
The use of hyperlinks is also shown in this document: Link Example.
<AppearanceSection></AppearanceSection>