Convert simple html to slack markdown
npm install html-to-slack-mdConvert html to slack markdown. This is the same as slackify-html but uses cheerio instead of htmlparser.
Example usage:
``js
var htmlToSlackMD = require("html-to-slack-md");
var text = htmlToSlackMD('this link is important');
// text variable contains 'this
``