Introduction
This is an example MDX document to demonstrate how to use various markdown features. It includes headings, paragraphs, lists, code blocks, and images.
Here's a link to Google.
This concludes the MDX example. Hopefully, it was helpful!
```mdx
---
title: "An MDX Document Sample"
date: "2023-10-27"
---
# Getting Started
This MDX document serves as a demonstration, illustrating the utilization of different markdown functionalities. It encompasses sections like titles, text blocks, enumerated and un-enumerated lists, sections of code, and graphical elements.
## List Examples
Consider the following list, which is unordered:
* An entry
* Another entry
* A final entry
Now, observe this ordered list:
1. The initial entry
2. The second entry
3. The concluding entry
## Code Snippets
Incorporating blocks of code is achievable in the following manner:
```javascript
console.log("Hello, world!");
Take a look at this link pointing to Google.