ui/richtext/bases/RichTextSuffixM.cs

A small UI rich text element class that matches the suffix "m" after a digit or ']' and sets a left margin of 0. It is annotated with a RichTextPanel attribute providing a regex, and derives from RichTextBase.

[RichTextPanel( @"(?<=[\d\]])m\b" )]
public class RichTextSuffixM : RichTextBase
{
	public override float? MarginLeft => 0f;
}