Lines Matching refs:nodes
47 from docutils import nodes
104 class rowSpan(nodes.General, nodes.Element): pass # pylint: disable=C0103,C0321
105 class colSpan(nodes.General, nodes.Element): pass # pylint: disable=C0103,C0321
127 nodes.literal_block(self.block_text, self.block_text),
132 node = nodes.Element() # anonymous container for parsing
166 table = nodes.table()
167 tgroup = nodes.tgroup(cols=len(colwidths))
172 colspec = nodes.colspec(colwidth=colwidth)
186 thead = nodes.thead()
191 tbody = nodes.tbody()
200 row = nodes.row()
211 entry = nodes.entry(**attributes)
219 , nodes.literal_block(self.directive.block_text
227 if len(node) != 1 or not isinstance(node[0], nodes.bullet_list):
302 row.append( (0, 0, nodes.comment()) )
333 if (isinstance(child , nodes.comment)
334 or isinstance(child, nodes.system_message)):
336 elif isinstance(child , nodes.target):
338 elif isinstance(child, nodes.bullet_list):