
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
remove-markdown-and-html
Advanced tools
Remove Markdown formatting from text and html (including attributes)
remove-markdown is a node.js module that will remove (strip) Markdown formatting from a text. "Markdown formatting" means pretty much anything that doesn’t look like regular text, like square brackets, asterisks etc.
The typical use case is to display an excerpt of a Markdown text, without the actual Markdown (or rendered HTML, for that matter), for example in a list of posts.
npm install remove-markdown-and-html
var removeMd = require('remove-markdown-and-html');
var markdown = '# This is a heading\n\nThis is a paragraph with [a link](http://www.disney.com/) in it.';
var plainText = removeMd(markdown); // plainText is now 'This is a heading\n\nThis is a paragraph with a link in it.'
You can also supply an options object to the function. Currently, the only two options are for stripping list headers and supporting Github Flavored Markdown:
var plainText = removeMd(markdown, {
stripListLeaders: false,
gfm: false
}); // The default for both is true
Stripping list headers will retain any list characters (*, -, +, (digit).).
Code is based on [Remove Markdown] (https://github.com/stiang/remove-markdown) by Stian Grytøyr
The code is based on Markdown Service Tools - Strip Markdown by Brett Terpstra.
Eric White
FAQs
Remove Markdown formatting from text and html (including attributes)
We found that remove-markdown-and-html demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.