---
title: Markdown Page example title
description: Markdown Page example description
wrapperClassName: docusaurus-markdown-example
---
# Markdown page
This is a page generated from markdown to illustrate the markdown page feature.
It supports all the regular MDX features, as you can see:
:::info
Useful information.
:::
```jsx live
function Button() {
return (
);
}
```
### Using relative path

### Using absolute path

import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
This is an apple 🍎This is an orange 🍊This is a banana 🍌
## Import Mdx and Md files
```js
// *.md file
import Chapter1 from './_chapter1.md';
;
// *.mdx file
import Chapter2 from './_chapter2.mdx';
;
```
import Chapter1 from './\_chapter1.md';
import Chapter2 from './\_chapter2.mdx';