├── .github └── workflows │ └── default.yaml ├── .gitignore ├── LICENSE ├── README.md ├── index.d.ts ├── index.js ├── package.json └── test └── remove-markdown.js /.github/workflows/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuchka/remove-markdown/HEAD/.github/workflows/default.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuchka/remove-markdown/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuchka/remove-markdown/HEAD/README.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuchka/remove-markdown/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuchka/remove-markdown/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuchka/remove-markdown/HEAD/package.json -------------------------------------------------------------------------------- /test/remove-markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zuchka/remove-markdown/HEAD/test/remove-markdown.js --------------------------------------------------------------------------------