strip-markdown
!Buildbuild-badgebuild
!Coveragecoverage-badgecoverage
!Downloadsdownloads-badgedownloads
!Sizesize-badgesize
!Sponsorssponsors-badgecollective
!Backersbackers-badgecollective
!Chatchat-badgechatremarkremark plugin remove markdown formatting. This essentially removes everything but paragraphs and text nodes.
This is one of the first remark plugins, before prefixing with remark-
got
cool.
Note!
This plugin is ready for the new parser in remark (remarkjs/remark#536
).
No change is needed: it works exactly the same now as it did before!Install
This package is ESM only: Node 12+ is needed to use it and it must beimport
ed instead of require
d.npm install strip-markdown
## Use
```js
import {remark} from 'remark'
import strip from 'strip-markdown'
remark()
.use(strip)
.process('Some *emphasis*, **importance**, and `code`.')
.then((file) => {
console.log(String(file))
})
Yields:
Some emphasis, importance, and code.
API
This package exports no identifiers. The default export isstripMarkdown
.unified().use(stripMarkdown[, options])
Plugin remove markdown formatting.`toml`, and their content
- Render everything else as simple paragraphs without formatting
- Uses
alt
text for images
Security
Use ofstrip-markdown
does not involve rehyperehype (hasthast)
or user content so there are no openings for cross-site scripting (XSS)xss
attacks.Contribute
Seecontributing.md
contributing in remarkjs/.github
health for ways
to get started.
See support.md
support for ways to get help.This project has a code of conductcoc. By interacting with this repository, organization, or community you agree to abide by its terms.