Fork of Chiri for Astro for my blog
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 93856307e5f4eeb75dad33c7e3281050e4e8d7b9 31 lines 618 B view raw
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)