public static bool GetStrikethrough(this ITextAttributes attributes)
 {
     return(attributes.GetBoolAttribute(TextAttribute.Strikethrough));
 }
 public static bool GetUnorderedList(this ITextAttributes attributes)
 {
     return(attributes.GetBoolAttribute(TextAttribute.UnorderedList));
 }
 public static bool GetItalic(this ITextAttributes attributes)
 {
     return(attributes.GetBoolAttribute(TextAttribute.Italic));
 }
 public static bool GetBold(this ITextAttributes attributes)
 {
     return(attributes.GetBoolAttribute(TextAttribute.Bold));
 }
 public static bool GetUnderline(this ITextAttributes attributes)
 {
     return(attributes.GetBoolAttribute(TextAttribute.Underline));
 }
 public static bool GetSubscript(this ITextAttributes attributes)
 => attributes.GetBoolAttribute(TextAttribute.Subscript);