##// END OF EJS Templates
whitelist installed components...
whitelist installed components we don't need most of what's in components to be installed. Much of it is included just for sdists or development.

File last commit:

r14881:a678d010
r15031:6e9ccb2c
Show More
python.tpl
17 lines | 443 B | application/vnd.groove-tool-template | SmartyLexer
{%- extends 'null.tpl' -%}
{% block in_prompt %}
# In[{{ cell.prompt_number if cell.prompt_number else ' ' }}]:
{% endblock in_prompt %}
{% block input %}
{{ cell.input | ipython2python }}
{% endblock input %}
{% block markdowncell scoped %}
{{ cell.source | comment_lines }}
{% endblock markdowncell %}
{% block headingcell scoped %}
{{ '#' * cell.level }}{{ cell.source | replace('\n', ' ') | comment_lines }}
{% endblock headingcell %}