All Projects → jsarafajr → slackify-markdown

jsarafajr / slackify-markdown

Licence: MIT License
Convert markdown into Slack-specific markdown

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to slackify-markdown

Remark
remark is a popular tool that transforms markdown with plugins. These plugins can inspect and change your markup. You can use remark on the server, the client, CLIs, deno, etc.
Stars: ✭ 4,746 (+5832.5%)
Mutual labels:  remark, unified
remark-footnotes
Legacy plugin to add support for pandoc footnotes — please use `remark-gfm` instead
Stars: ✭ 38 (-52.5%)
Mutual labels:  remark, unified
Mdx
Markdown for the component era
Stars: ✭ 11,948 (+14835%)
Mutual labels:  remark, unified
react-remark
React component and hook to use remark to render markdown
Stars: ✭ 81 (+1.25%)
Mutual labels:  remark, unified
remark-slate-transformer
remark plugin to transform remark syntax tree (mdast) to Slate document tree, and vice versa. Made for WYSIWYG markdown editor.
Stars: ✭ 62 (-22.5%)
Mutual labels:  remark, unified
awesome-remark
Curated list of awesome remark resources
Stars: ✭ 186 (+132.5%)
Mutual labels:  remark, unified
SlackWebhooksGithubCrawler
Search for Slack Webhooks token publicly exposed on Github
Stars: ✭ 21 (-73.75%)
Mutual labels:  slack
design-system
[WIP] Design system for unified and related projects
Stars: ✭ 12 (-85%)
Mutual labels:  unified
dienstplan
Slack bot app for duty rotations
Stars: ✭ 14 (-82.5%)
Mutual labels:  slack
Hodor
Hodor is a an automation application that is used to open the door controlled by an intercom system from Slack using a custom slash command.
Stars: ✭ 21 (-73.75%)
Mutual labels:  slack
slack logger backend
An Elixir logger backend for posting errors to Slack.
Stars: ✭ 31 (-61.25%)
Mutual labels:  slack
remark-man
plugin to compile markdown to man pages
Stars: ✭ 87 (+8.75%)
Mutual labels:  remark
ben
Fast, native*, cross-platform Slack client, develop with React QML
Stars: ✭ 19 (-76.25%)
Mutual labels:  slack
slack-dark-theme
Apply dark theme to your slack with zero configuration
Stars: ✭ 15 (-81.25%)
Mutual labels:  slack
transformer-oembed
@remark-embedder transformer for oEmbed supported links
Stars: ✭ 25 (-68.75%)
Mutual labels:  remark
Coder
求职信息 组队刷题 经验交流
Stars: ✭ 22 (-72.5%)
Mutual labels:  slack
slack-rota
日々のローテーションをお知らせする Slack アプリ
Stars: ✭ 14 (-82.5%)
Mutual labels:  slack
slack-texts
SMS notifications for Slack groups
Stars: ✭ 19 (-76.25%)
Mutual labels:  slack
slag
slack in the terminal using javascript
Stars: ✭ 16 (-80%)
Mutual labels:  slack
turnio
🤖 Bot to manage a queue of slack users in a channel
Stars: ✭ 11 (-86.25%)
Mutual labels:  slack

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].