Convert Markdown and GitHub Flavoured Markdown to Slack BlockKit Blocks
Mack is a Markdown parser to convert any Markdown content to Slack BlockKit block objects.
Text is truncated to fit within the Slack API's limits.
- All inline elements (italics, bold, strikethrough, inline code, hyperlinks)
- Lists (ordered, unordered, checkboxes)
- All headers
- Code blocks
- Block quotes (with some limitations)
- Images
- Thematic Breaks / Dividers
- Tables (alignment not preserved)
- Block quotes (limited functionality; does not support lists, headings, or images within the block quote)
npm install @tryfabric/mack
import {markdownToBlocks} from '@tryfabric/mack';
const blocks = markdownToBlocks(`
# Hello world
* bulleted item 1
* bulleted item 2
abc _123_
![cat](https://images.unsplash.com/photo-1574158622682-e40e69881006)
`);
The blocks
object now results in this payload.
function markdownToBlocks(text: string, options: ParsingOptions): KnownBlock[]
text
: the content to parseoptions
: the options to use when parsing.
interface ParsingOptions {
// Configure how lists are displayed
lists?: ListOptions;
}
interface ListOptions {
// Configure how checkbox list items are displayed. By default, they are prefixed with '* '
checkboxPrefix?: (checked: boolean) => string;
}