4.4.0 • Published 8 months ago

slackify-markdown v4.4.0

Weekly downloads
24,823
License
MIT
Repository
github
Last release
8 months ago

Slackify-Markdown

Build Status codecov Known Vulnerabilities

Slackify-Markdown is a Markdown to Slack-specific-markdown converter, based on Unified and Remark.

Install

npm install slackify-markdown

Usage

const slackifyMarkdown = require('slackify-markdown');
const markdown = `
# List of items

* item 1
* item 2
* item 3

[here is an example](https://example.com)
`;

slackifyMarkdown(markdown);
/*
 *List of items*

 • item 1
 • item 2
 • item 3

 <https://example.com|here is an example>
/*

NodeJS version < 10

Use slackify-markdown v2 if you use nodejs version 9 and lower.

npm install slackify-markdown@2

MIT Licence