Slack
Enable Slack mrkdwn output with SlackFlavored:
cs
var config = new ReverseMarkdown.Config
{
SlackFlavored = true
};
var converter = new ReverseMarkdown.Converter(config);Slack's markup differs from standard Markdown. When enabled, ReverseMarkdown produces:
*bold*(single asterisks) for<strong>/<b>_italic_for<em>/<i>~strike~for<del>/<strike>•for unordered list bullets
WARNING
Because Slack uses • for bullets, the ListBulletChar option is ignored when SlackFlavored is enabled.
