mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-01 11:18:24 +02:00
* update examples script * rename ext * typo * update examples * fix script to update starters * update examples * add --allow-empty so that script does not fail if nothing changed * fix lint
20 lines
439 B
Text
Generated
20 lines
439 B
Text
Generated
---
|
|
slug: mdx-blog-post
|
|
title: MDX Blog Post
|
|
authors: [slorber]
|
|
tags: [docusaurus]
|
|
---
|
|
|
|
Blog posts support [Docusaurus Markdown features](https://docusaurus.io/docs/markdown-features), such as [MDX](https://mdxjs.com/).
|
|
|
|
:::tip
|
|
|
|
Use the power of React to create interactive blog posts.
|
|
|
|
```js
|
|
<button onClick={() => alert('button clicked!')}>Click me!</button>
|
|
```
|
|
|
|
<button onClick={() => alert('button clicked!')}>Click me!</button>
|
|
|
|
:::
|