namespace TeamOctolings.Octobot.Extensions; public static class MarkdownExtensions { /// /// Formats a string to use Markdown Bullet formatting. /// /// The input text to format. /// /// A markdown-formatted bullet string. /// public static string BulletPoint(string text) { return $"- {text}"; } /// /// Formats a string to use Markdown Quote formatting. /// /// The input text to format. /// /// A markdown-formatted quote string. /// public static string Quote(string text) { return $"> {text}"; } }