├── .gitignore ├── README.md ├── example └── render.js ├── index.js ├── lib ├── escape_code.js ├── jsx_inline.js └── jsx_parser.js ├── package.json └── test ├── fixtures ├── basic.txt ├── block.txt ├── escaped_code.txt └── inline.txt └── test.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osnr/markdown-it-jsx/HEAD/README.md -------------------------------------------------------------------------------- /example/render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osnr/markdown-it-jsx/HEAD/example/render.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osnr/markdown-it-jsx/HEAD/index.js -------------------------------------------------------------------------------- /lib/escape_code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osnr/markdown-it-jsx/HEAD/lib/escape_code.js -------------------------------------------------------------------------------- /lib/jsx_inline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osnr/markdown-it-jsx/HEAD/lib/jsx_inline.js -------------------------------------------------------------------------------- /lib/jsx_parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osnr/markdown-it-jsx/HEAD/lib/jsx_parser.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osnr/markdown-it-jsx/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/basic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osnr/markdown-it-jsx/HEAD/test/fixtures/basic.txt -------------------------------------------------------------------------------- /test/fixtures/block.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osnr/markdown-it-jsx/HEAD/test/fixtures/block.txt -------------------------------------------------------------------------------- /test/fixtures/escaped_code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osnr/markdown-it-jsx/HEAD/test/fixtures/escaped_code.txt -------------------------------------------------------------------------------- /test/fixtures/inline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osnr/markdown-it-jsx/HEAD/test/fixtures/inline.txt -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osnr/markdown-it-jsx/HEAD/test/test.js --------------------------------------------------------------------------------