docusaurus/packages/docusaurus-init/templates/classic/docs/mdx.md
Endi d61cc01217
feat(v2): @docusaurus/init package (#1655)
* feat(v2): separate v2 docusaurus/init package

* nits

* docs

* rm unwanted

* readme
2019-07-14 01:06:23 +07:00

535 B

id title
mdx Powered by MDX

You can write JSX and use React components within your Markdown thanks to MDX.

export const Highlight = ({children, color}) => ( <span style={{ backgroundColor: color, borderRadius: '2px', color: '#fff', padding: '0.2rem', }}> {children} );

Docusaurus green and Facebook blue are my favorite colors.

I can write Markdown alongside my JSX!