remove-markdown
remove-markdown copied to clipboard
Strip Markdown stuff from text
**Problem Statement:** - The issue is when we have a sequential ‘_' (underscore) character after a space the package will replace the underscore from the only first word! Example: ‘_Wizard_...
Fixes #55
Bumps [debug](https://github.com/debug-js/debug) to 4.3.4 and updates ancestor dependency [mocha](https://github.com/mochajs/mocha). These dependencies need to be updated together. Updates `debug` from 2.2.0 to 4.3.4 Release notes Sourced from debug's releases. 4.3.4 What's...
Bumps [ms](https://github.com/vercel/ms) to 2.1.3 and updates ancestor dependency [mocha](https://github.com/mochajs/mocha). These dependencies need to be updated together. Updates `ms` from 0.7.1 to 2.1.3 Release notes Sourced from ms's releases. 2.1.3 Patches...
Bumps [minimatch](https://github.com/isaacs/minimatch) to 5.0.1 and updates ancestor dependency [mocha](https://github.com/mochajs/mocha). These dependencies need to be updated together. Updates `minimatch` from 0.3.0 to 5.0.1 Commits 9f49616 5.0.1 cdc3188 don't load the whole...
@stiang it looks like you were publishing this package to npm locally, or some other way? I noticed a small typo in the sample codeblock--going to push a change for...
Fixes #56
Fixes #90 Credits to [marked](https://github.com/markedjs/marked) for the regex. I got it from there. Adding tests for the cases mentioned in the issue and all other tests are still passing
Hi, The horizontal rule regex incorrectly matches result leaving some markdown unremoved. The current regex: https://github.com/zuchka/remove-markdown/blob/c96417bbb16a9e89dfc0b3dfafd306ad30a08867/index.js#L15 matches 3 or more -, *, _ followed by whitespace There are two issues:...