Lines Matching refs:match
103 # Include any text prior to match as a normal text node.
121 # own C role, but both match the same regex, so we try both.
123 def markup_func_ref_sphinx3(docname, app, match):
131 target = match.group(2)
132 target_text = nodes.Text(match.group(0))
158 def markup_c_ref(docname, app, match):
182 target = match.group(2)
183 target_text = nodes.Text(match.group(0))
185 if not ((match.re == RE_function and target in Skipfuncs)
187 lit_text = nodes.literal(classes=['xref', 'c', class_str[match.re]])
190 reftype = reftype_str[match.re],
199 reftype_str[match.re], target, pxref,
215 def markup_doc_ref(docname, app, match):
220 target = match.group(1)
240 return nodes.Text(match.group(0))