Lines Matching refs:nodes
45 from docutils import nodes
94 class rowSpan(nodes.General, nodes.Element): pass # pylint: disable=C0103,C0321
95 class colSpan(nodes.General, nodes.Element): pass # pylint: disable=C0103,C0321
117 nodes.literal_block(self.block_text, self.block_text),
122 node = nodes.Element() # anonymous container for parsing
156 table = nodes.table()
157 tgroup = nodes.tgroup(cols=len(colwidths))
162 colspec = nodes.colspec(colwidth=colwidth)
176 thead = nodes.thead()
181 tbody = nodes.tbody()
190 row = nodes.row()
201 entry = nodes.entry(**attributes)
209 , nodes.literal_block(self.directive.block_text
217 if len(node) != 1 or not isinstance(node[0], nodes.bullet_list):
292 row.append( (0, 0, nodes.comment()) )
323 if (isinstance(child , nodes.comment)
324 or isinstance(child, nodes.system_message)):
326 elif isinstance(child , nodes.target):
328 elif isinstance(child, nodes.bullet_list):