forked from
quillmatiq.com/augment
Fork of Chiri for Astro for my blog
1---
2title: 'Using MDX'
3pubDate: '2025-05-12'
4---
5
6import Callout from '@/components/examples/Callout.astro'
7import CounterButton from '@/components/examples/CounterButton.astro'
8import Tag from '@/components/examples/Tag.astro'
9
10MDX combines Markdown with embedded JavaScript and JSX, making it easy to build interactive content. Below are some examples.
11
12---
13
14## Callout
15
16<Callout />
17
18## Button
19
20<CounterButton />
21
22## Tag
23
24<Tag />
25
26---
27
28## Ref
29
30- [MDX Syntax Documentation](https://mdxjs.com/docs/what-is-mdx)
31- [Astro Usage Documentation](https://docs.astro.build/en/guides/markdown-content/#markdown-and-mdx-pages)