MDX is a text markup language created in 2017 by John Otander.
git clone https://github.com/mdx-js/mdx
#491on PLDB | 6Years Old |
Try now: Web
MDX allows you to use JSX in your markdown content. You can import components, such as interactive charts or alerts, and embed them within your content.
import { Chart } from '../components/chart'
# Here鈥檚 a chart
The chart is rendered inside our MDX document.
<Chart />