[docs]@dataclasses.dataclass(frozen=True)classMarkBorderAttrs(Base):""" Attributes for :class:`MarkBorder`. :param size: Required. Border size (1-3). :param color: Required. Border color as hex string (#RRGGBB or #RRGGBBAA). """size:int=REQcolor:str=REQ
[docs]@dataclasses.dataclass(frozen=True)classMarkBorder(BaseMark):""" Applies a border style to content. The border mark adds a visible border around the marked content with configurable size and color. """type:str=TypeEnum.border.valueattrs:MarkBorderAttrs=REQ