├── .eslintrc.yml ├── .github └── workflows │ └── node.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── index.d.ts ├── index.mjs ├── jsdoc.json ├── lib ├── dfa.mjs └── table.mjs ├── package.json ├── rollup.config.mjs └── test ├── fixtures ├── options.txt ├── standard.txt └── unspecified.txt └── test.mjs /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbug312/markdown-it-multimd-table/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.github/workflows/node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbug312/markdown-it-multimd-table/HEAD/.github/workflows/node.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbug312/markdown-it-multimd-table/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbug312/markdown-it-multimd-table/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbug312/markdown-it-multimd-table/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbug312/markdown-it-multimd-table/HEAD/README.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbug312/markdown-it-multimd-table/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbug312/markdown-it-multimd-table/HEAD/index.mjs -------------------------------------------------------------------------------- /jsdoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbug312/markdown-it-multimd-table/HEAD/jsdoc.json -------------------------------------------------------------------------------- /lib/dfa.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbug312/markdown-it-multimd-table/HEAD/lib/dfa.mjs -------------------------------------------------------------------------------- /lib/table.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbug312/markdown-it-multimd-table/HEAD/lib/table.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbug312/markdown-it-multimd-table/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbug312/markdown-it-multimd-table/HEAD/rollup.config.mjs -------------------------------------------------------------------------------- /test/fixtures/options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbug312/markdown-it-multimd-table/HEAD/test/fixtures/options.txt -------------------------------------------------------------------------------- /test/fixtures/standard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbug312/markdown-it-multimd-table/HEAD/test/fixtures/standard.txt -------------------------------------------------------------------------------- /test/fixtures/unspecified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbug312/markdown-it-multimd-table/HEAD/test/fixtures/unspecified.txt -------------------------------------------------------------------------------- /test/test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redbug312/markdown-it-multimd-table/HEAD/test/test.mjs --------------------------------------------------------------------------------