ui/richtext/RichTextDash.cs

A RichText panel definition for matching the word 'dash', 'dashes' or 'dashing' and styling it. It sets icon (empty), skew, font weight and color for matched text.

Reflection
using Sandbox;

[RichTextPanel( @"\b[Dd]ash(es|ing)?\b" )]
public class RichTextDash : RichTextBase
{
	//public override string ImagePath => "textures/icons/vector/tiny_dashes.png";
	public override string Icon => "";

	//public override bool Italic => true;
	public override float? SkewX => -8;
	public override int? FontWeight => 900;

	public override Color Color => new Color( 0.6f, 0.6f, 1f );
}