$ cnpm install remark-retext
remark plugin to bridge or mutate to retext.
npm:
npm install remark-retext
Say we have the following file, example.md
:
## Hello guys!
And our script, example.js
, looks as follows:
var vfile = require('to-vfile')
var report = require('vfile-reporter')
var unified = require('unified')
var parse = require('remark-parse')
var stringify = require('remark-stringify')
var remark2retext = require('remark-retext')
var english = require('retext-english')
var equality = require('retext-equality')
unified()
.use(parse)
.use(
remark2retext,
unified()
.use(english)
.use(equality)
)
.use(stringify)
.process(vfile.readSync('example.md'), function(err, file) {
console.error(report(err || file))
})
Now, running node example
yields:
example.md
1:10-1:14 warning `guys` may be insensitive, use `people`, `persons`, `folks` instead gals-men retext-equality
⚠ 1 warning
origin.use(remark2retext, destination[, options])
remark (mdast) plugin to bridge or mutate to retext (nlcst).
destination
destination
is either a parser or a processor.
If a Unified
processor is given, runs the destination processor
with the new nlcst tree, then, after running discards that tree and continues on
running the origin processor with the original tree (bridge mode).
If a parser (such as parse-latin
, parse-english
, or
parse-dutch
) is given, passes the tree to further plugins
(mutate mode).
options
Passed to mdast-util-to-nlcst
.
Use of remark-retext
does not involve rehype (hast)
or user content so there are no openings for cross-site scripting (XSS)
attacks.
rehype-retext
— Transform HTML (hast) to natural language (nlcst)remark-rehype
— Transform Markdown (mdast) to HTML (hast)rehype-remark
— Transform HTML (hast) to Markdown (mdast)mdast-util-to-nlcst
— Underlying algorithmSee contributing.md
in remarkjs/.github
for ways
to get started.
See support.md
for ways to get help.
This project has a code of conduct. By interacting with this repository, organization, or community you agree to abide by its terms.
Copyright 2013 - present © cnpmjs.org