├── .eslintrc.yml ├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── index.mjs ├── package.json ├── rollup.config.mjs └── test ├── cjs.js ├── fixtures ├── footnote-prefixed.txt └── footnote.txt └── test.mjs /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/markdown-it-footnote/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/markdown-it-footnote/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/markdown-it-footnote/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | coverage/ 3 | dist/ 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/markdown-it-footnote/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/markdown-it-footnote/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/markdown-it-footnote/HEAD/README.md -------------------------------------------------------------------------------- /index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/markdown-it-footnote/HEAD/index.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/markdown-it-footnote/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/markdown-it-footnote/HEAD/rollup.config.mjs -------------------------------------------------------------------------------- /test/cjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/markdown-it-footnote/HEAD/test/cjs.js -------------------------------------------------------------------------------- /test/fixtures/footnote-prefixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/markdown-it-footnote/HEAD/test/fixtures/footnote-prefixed.txt -------------------------------------------------------------------------------- /test/fixtures/footnote.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/markdown-it-footnote/HEAD/test/fixtures/footnote.txt -------------------------------------------------------------------------------- /test/test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/markdown-it-footnote/HEAD/test/test.mjs --------------------------------------------------------------------------------