Skip to content

Commit e6cac64

Browse files
committed
add 'paragraph' node to docutils
1 parent 26e133c commit e6cac64

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

stubs/docutils/docutils/nodes.pyi

+5
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,9 @@ class Element(Node):
104104
def astext(self) -> str: ...
105105
def __getattr__(self, __name: str) -> Incomplete: ...
106106

107+
class TextElement(Element):
108+
child_text_separator: str = ""
109+
107110
class Text(Node, str):
108111
tagname: ClassVar[str]
109112
children: tuple[()]
@@ -132,6 +135,8 @@ class document(Root, Structural, Element):
132135
def astext(self) -> str: ...
133136
def __getattr__(self, __name: str) -> Incomplete: ...
134137

138+
class paragraph(General, TextElement): ...
139+
135140
class NodeVisitor:
136141
def __init__(self, document: document): ...
137142
def __getattr__(self, __name: str) -> Incomplete: ...

0 commit comments

Comments
 (0)