Lines Matching full:nodes
47 from docutils import nodes
106 class rowSpan(nodes.General, nodes.Element): pass # pylint: disable=C0103,C0321
107 class colSpan(nodes.General, nodes.Element): pass # pylint: disable=C0103,C0321
129 nodes.literal_block(self.block_text, self.block_text),
134 node = nodes.Element() # anonymous container for parsing
168 table = nodes.table()
169 tgroup = nodes.tgroup(cols=len(colwidths))
174 colspec = nodes.colspec(colwidth=colwidth)
188 thead = nodes.thead()
193 tbody = nodes.tbody()
202 row = nodes.row()
213 entry = nodes.entry(**attributes)
221 , nodes.literal_block(self.directive.block_text
229 if len(node) != 1 or not isinstance(node[0], nodes.bullet_list):
304 row.append( (0, 0, nodes.comment()) )
335 if (isinstance(child , nodes.comment)
336 or isinstance(child, nodes.system_message)):
338 elif isinstance(child , nodes.target):
340 elif isinstance(child, nodes.bullet_list):