diff options
| author | Yasutake Yohei <yohei@yasutakeyohei.com> | 2023-12-30 22:24:55 +0900 |
|---|---|---|
| committer | Yasutake Yohei <yohei@yasutakeyohei.com> | 2023-12-30 22:24:55 +0900 |
| commit | 3fc0ee1b72c12922254533b78695ffa17e7232be (patch) | |
| tree | f92d871e6720670f3fa98d9e28b9396a894d9135 /blog/2021-08-01-mdx-blog-post.mdx | |
| parent | e18d8441d03746158a72029381d8fbdee39184b3 (diff) | |
initial commit
Diffstat (limited to 'blog/2021-08-01-mdx-blog-post.mdx')
| -rw-r--r-- | blog/2021-08-01-mdx-blog-post.mdx | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/blog/2021-08-01-mdx-blog-post.mdx b/blog/2021-08-01-mdx-blog-post.mdx new file mode 100644 index 00000000..c04ebe32 --- /dev/null +++ b/blog/2021-08-01-mdx-blog-post.mdx @@ -0,0 +1,20 @@ +--- +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> + +::: |
