[docs]@dataclasses.dataclass(frozen=True)classMarkSubsupAttrs(Base):""" Attributes for :class:`MarkSubsup`. :param type: Required. Either "sub" for subscript or "sup" for superscript. """type:T.Literal["sub","sup"]=REQ
[docs]@dataclasses.dataclass(frozen=True)classMarkSubsup(BaseMark):""" Applies superscript or subscript styling to text nodes. The subsup mark is used to render text as either superscript (above the baseline) or subscript (below the baseline). The ``attrs.type`` attribute determines which style is applied. - https://developer.atlassian.com/cloud/jira/platform/apis/document/marks/subsup/ """type:str=TypeEnum.subsup.valueattrs:MarkSubsupAttrs=REQ