Created
September 23, 2020 22:22
-
-
Save aviflax/d012961844f7e89eea90cf2c5e7e054a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
const slackifyMarkdown = require('slackify-markdown'); | |
const fs = require('fs'); | |
const markdown = fs.readFileSync(0, 'utf-8'); | |
const slacked = slackifyMarkdown(markdown); | |
console.log(slacked); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment