/** * Converts the GitHub-flavoured markdown used in release notes into Slack mrkdwn so it renders * nicely inside a Slack message instead of showing raw `###`, `**bold**` and `[text](url)` syntax. * * Handles the constructs that actually appear in our notes: ATX headings, bold, links, bullet lists * and horizontal rules. Inline code spans and fenced code blocks are passed through untouched so * their contents are never rewritten. Italic (`_text_`) is already valid Slack mrkdwn and is left * as-is. This is a pragmatic converter, not a full CommonMark implementation. */ export declare function markdownToSlack(markdown: string): string; //# sourceMappingURL=markdown-to-slack.d.ts.map