namespace 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}";
}
}