Lines Matching full:nodes
32 from docutils import nodes
69 def run(self) -> list[nodes.Element]:
88 table = nodes.table()
90 tgroup = nodes.tgroup(cols=2)
91 tgroup += nodes.colspec(colwidth=1)
92 tgroup += nodes.colspec(colwidth=1)
95 thead = nodes.thead()
98 row = nodes.row()
101 entry = nodes.entry()
102 entry += nodes.paragraph(text="Project")
104 entry = nodes.entry()
105 entry += nodes.paragraph(text="Revision")
110 row = nodes.row()
113 entry = nodes.entry()
114 entry += nodes.paragraph(text=project.name)
116 entry = nodes.entry()
117 par = nodes.paragraph()
118 par += nodes.reference(
127 tbody = nodes.tbody()