Lines Matching full:nodes
7 from docutils import nodes
103 repl.append(nodes.Text(t[done:m.start()]))
113 repl.append(nodes.Text(t[done:]))
136 target_text = nodes.Text(match.group(0))
147 lit_text = nodes.literal(classes=['xref', 'c', 'c-func'])
196 target_text = nodes.Text(match.group(0))
207 lit_text = nodes.literal(classes=['xref', 'c', class_str[match.re]])
261 return nodes.Text(match.group(0))
281 return nodes.Text(match.group(0))
302 return nodes.Text(match.group(0))
328 return nodes.reference('', nodes.Text(text),
335 # The nodes.literal test catches ``literal text``, its purpose is to
338 if not isinstance(node, nodes.Text) or isinstance(node.parent, nodes.literal):
344 if isinstance(parent, nodes.Referential):
353 # kinds of nodes to prune. But this works well for now.
355 for para in doctree.traverse(nodes.paragraph):