Skip to content

Slack

The Slack flavor produces Slack-compatible message formatting: * for bold, _ for italic, ~ for strikethrough, and for list bullets.

csharp
var config = new Config { Flavor = MarkdownFlavor.Slack };
var converter = new Converter(config);
snippet source | anchor

The legacy SlackFlavored = true switch is an obsolete alias of Flavor = MarkdownFlavor.Slack.

WARNING

Slack has no table syntax - a <table> raises an unsupported-tag exception under this flavor. The Formatting.ListBulletChar option is ignored for Slack, which always uses .

Released under the MIT License.