MDX is a text markup language created in 2017 by John Otander.
#170on PLDB | 7Years Old |
git clone https://github.com/mdx-js/mdx
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 />