Get all links from a markdown string.
Piggy backs on top of remarkable
to get a list of parsed tokens corresponding to links.
$ npm i parse-markdown-links -S
const parse = require('parse-markdown-links')
console.log(parse('[a link](https://woohoo.com)\n![image](image.png)'))
// [ 'https://woohoo.com' , 'image.png' ]
Takes a markdown string and returns an array of links.
MIT