Get all links from a markdown string
npm install parse-markdown-links> Get all links from a markdown string.

!Node version


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