├── .c8rc.json ├── .editorconfig ├── .eslintignore ├── .eslintrc.yaml ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.yaml ├── LICENSE.md ├── README.md ├── __fixtures__ ├── boolean │ ├── expected.jsx │ └── input.md ├── jsx-expression │ ├── expected.jsx │ └── input.md ├── jsx-spread │ ├── expected.jsx │ └── input.md ├── no-lang │ ├── expected.jsx │ └── input.md ├── no-meta │ ├── expected.jsx │ └── input.md └── string │ ├── expected.jsx │ └── input.md ├── index.ts ├── package.json ├── test.ts └── tsconfig.json /.c8rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcohaszing/remark-mdx-code-meta/HEAD/.c8rc.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcohaszing/remark-mdx-code-meta/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | *.jsx 2 | -------------------------------------------------------------------------------- /.eslintrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcohaszing/remark-mdx-code-meta/HEAD/.eslintrc.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcohaszing/remark-mdx-code-meta/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcohaszing/remark-mdx-code-meta/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcohaszing/remark-mdx-code-meta/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcohaszing/remark-mdx-code-meta/HEAD/.prettierrc.yaml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcohaszing/remark-mdx-code-meta/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcohaszing/remark-mdx-code-meta/HEAD/README.md -------------------------------------------------------------------------------- /__fixtures__/boolean/expected.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcohaszing/remark-mdx-code-meta/HEAD/__fixtures__/boolean/expected.jsx -------------------------------------------------------------------------------- /__fixtures__/boolean/input.md: -------------------------------------------------------------------------------- 1 | ```js copy 2 | console.log('Hello World!'); 3 | ``` 4 | -------------------------------------------------------------------------------- /__fixtures__/jsx-expression/expected.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcohaszing/remark-mdx-code-meta/HEAD/__fixtures__/jsx-expression/expected.jsx -------------------------------------------------------------------------------- /__fixtures__/jsx-expression/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcohaszing/remark-mdx-code-meta/HEAD/__fixtures__/jsx-expression/input.md -------------------------------------------------------------------------------- /__fixtures__/jsx-spread/expected.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcohaszing/remark-mdx-code-meta/HEAD/__fixtures__/jsx-spread/expected.jsx -------------------------------------------------------------------------------- /__fixtures__/jsx-spread/input.md: -------------------------------------------------------------------------------- 1 | ```js {...props} 2 | console.log('Hello World!'); 3 | ``` 4 | -------------------------------------------------------------------------------- /__fixtures__/no-lang/expected.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcohaszing/remark-mdx-code-meta/HEAD/__fixtures__/no-lang/expected.jsx -------------------------------------------------------------------------------- /__fixtures__/no-lang/input.md: -------------------------------------------------------------------------------- 1 | ``` 2 | console.log('Hello World!'); 3 | ``` 4 | -------------------------------------------------------------------------------- /__fixtures__/no-meta/expected.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcohaszing/remark-mdx-code-meta/HEAD/__fixtures__/no-meta/expected.jsx -------------------------------------------------------------------------------- /__fixtures__/no-meta/input.md: -------------------------------------------------------------------------------- 1 | ```js 2 | console.log('Hello World!'); 3 | ``` 4 | -------------------------------------------------------------------------------- /__fixtures__/string/expected.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcohaszing/remark-mdx-code-meta/HEAD/__fixtures__/string/expected.jsx -------------------------------------------------------------------------------- /__fixtures__/string/input.md: -------------------------------------------------------------------------------- 1 | ```js copy 2 | console.log('Hello World!'); 3 | ``` 4 | -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcohaszing/remark-mdx-code-meta/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcohaszing/remark-mdx-code-meta/HEAD/package.json -------------------------------------------------------------------------------- /test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcohaszing/remark-mdx-code-meta/HEAD/test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcohaszing/remark-mdx-code-meta/HEAD/tsconfig.json --------------------------------------------------------------------------------