Lines Matching refs:classified_text
68 def raw_highlight(classified_text): argument
71 for kind, text in classified_text:
88 def ansi_highlight(classified_text, colors=default_ansi): argument
92 for kind, text in classified_text:
99 def html_highlight(classified_text,opener='<pre class="python">\n', closer='</pre>\n'): argument
102 for kind, text in classified_text:
139 def build_html_page(classified_text, title='python', argument
143 result = html_highlight(classified_text)
181 def latex_highlight(classified_text, title = 'python', argument
187 for kind, text in classified_text:
246 classified_text = analyze_python(source) variable
249 encoded = raw_highlight(classified_text)
251 encoded = build_html_page(classified_text, title=sourcefile)
253 encoded = html_highlight(classified_text)
255 encoded = latex_highlight(classified_text, title=sourcefile)
257 encoded = ansi_highlight(classified_text)