##// END OF EJS Templates
Fixing issues with js tests....
Fixing issues with js tests. * Closing old pages to prevent fd leaks. * Making sure kernels are killed to prevent fd leaks. * Moving towards deleting old notebooks (this is not done, but this should be merged as is).

File last commit:

r14881:a678d010
r14965:bf533943
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 %}