[docs]@dataclasses.dataclass(frozen=True)classMarkIndentationAttrs(Base):""" Attributes for :class:`MarkIndentation`. :param level: Required. The indentation level, an integer from 1 to 6. """level:int=REQ
[docs]@dataclasses.dataclass(frozen=True)classMarkIndentation(BaseMark):""" Applies indentation to block-level content. The indentation mark controls the left margin indentation of paragraphs and other block elements. The ``level`` attribute specifies the depth of indentation, ranging from 1 (minimal) to 6 (maximum). """type:str=TypeEnum.indentation.valueattrs:MarkIndentationAttrs=REQ