[docs]@dataclasses.dataclass(frozen=True)classMarkAlignmentAttrs(Base):""" Attributes for :class:`MarkAlignment`. :param align: Required. The text alignment direction. Valid values are ``"center"`` or ``"end"``. """align:T.Literal["center","end"]
[docs]@dataclasses.dataclass(frozen=True)classMarkAlignment(BaseMark):""" Sets text alignment on block-level content. The alignment mark controls horizontal text alignment within paragraphs and headings. Note that ``"start"`` (left-aligned for LTR languages) is the default and doesn't require a mark. Valid alignment values: - ``"center"`` - Center-aligned text - ``"end"`` - Right-aligned text (for LTR languages) """type:str=TypeEnum.alignment.valueattrs:MarkAlignmentAttrs=REQ