Markdown
MDX
With Nextra, all your .mdx
files under the pages directory will be rendered with MDX (opens in a new tab), it's an
advanced Markdown format with React component support.
For example, you can use import and use React components inside your Markdown files like this:
Markdown
## Hello MDX
import { useState } from 'react'
export function Counter({ children }) {
const [count, setCount] = useState(0)
return <button onClick={() => setCount(count + 1)}>
{children}{count}
</button>
}
<Counter>**Clicks**: </Counter>
Generates:
Besides basic MDX, Nextra also has some advanced Markdown features built-in.
GitHub Flavored Markdown
GFM (opens in a new tab) is an extension of Markdown, created by GitHub, that adds support for strikethrough, task lists, tables, and more.
Strikethrough
removed
Markdown
~~removed~~
Task List
- Write the press release
- Update the website
- Contact the media
Markdown
- [x] Write the press release
- [ ] Update the website
- [ ] Contact the media
Table
Syntax | Description | Test Text |
---|---|---|
Header | Title | Here's this |
Paragraph | Text | And more |
Strikethrough |
Markdown
| Syntax | Description | Test Text |
| :------------ | :---------: | ----------: |
| Header | Title | Here's this |
| Paragraph | Text | And more |
| Strikethrough | | ~~Text~~ |
Autolinks
Visit https://nextjs.org (opens in a new tab).
Visit https://nextjs.org.
Extended Syntax Highlighting
Check out the Syntax Highlighting section for more information: