├── package.json └── readme.md /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "John Otander ", 3 | "license": "MIT", 4 | "name": "mdx-spec", 5 | "private": true, 6 | "repository": "mdx-js/specification", 7 | "version": "1.0.0" 8 | } 9 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # Specification 2 | 3 | This repo is archived. 4 | Up-to-date info is now in other places. 5 | 6 | Allmost all info is now on the website: [`mdxjs.com`](https://mdxjs.com). 7 | 8 | There are micromark extensions that function as reference implementation which 9 | describe what syntax works: 10 | [expressions](https://github.com/micromark/micromark-extension-mdx-expression/tree/main/packages/micromark-extension-mdx-expression#syntax), 11 | [JSX](https://github.com/micromark/micromark-extension-mdx-jsx#syntax), 12 | [ESM](https://github.com/micromark/micromark-extension-mdxjs-esm#syntax). 13 | 14 | For the AST extensions, 15 | see the mdast utilities: 16 | [expressions](https://github.com/syntax-tree/mdast-util-mdx-expression#syntax-tree), 17 | [JSX](https://github.com/syntax-tree/mdast-util-mdx-jsx#syntax-tree), 18 | [ESM](https://github.com/syntax-tree/mdast-util-mdxjs-esm#syntax-tree). 19 | --------------------------------------------------------------------------------