Attributes/Markdown/Style/BoldAttribute.cs

namespace Ominous.Attributes.Markdown.Style;
 
public sealed class BoldAttribute : StyleAttribute
{
    public BoldAttribute() : base("**", "b") { }
}