Remove all links, references, and definitions with remark.
Original motivation was to process Markdown documents in a way that would make it easier to read as a plain text. On an ebook reader or a piece of paper the links are useless and look ugly.
npm:
npm install remark-unlink
Say we have the following file, example.md
.
Imagine section titles and URLs a bit longer though.
## TOC
- [section 1](#section-1)
- [section 2](#section-2)
## section 1
Section [content][1] may include some [links](https://domain.name/path).
[1]: https://domain.name/path
## section 2

More content.
And our script, example.js
, looks as follows:
var vfile = require('to-vfile')
var remark = require('remark')
var unlink = require('remark-unlink')
remark()
.use(unlink)
.process(vfile.readSync('example.md'), function(err, file) {
if (err) throw err
console.log(String(file))
})
Now, running node example
yields:
## TOC
- section 1
- section 2
## section 1
Section content may include some links.
## section 2
More content.
Transform the tree to remove links, images, references, and definitions.
See contributing.md
in remarkjs/remark
for ways to get
started.
This organisation has a Code of Conduct. By interacting with this repository, organisation, or community you agree to abide by its terms.
MIT © Eugene Sharygin