##// END OF EJS Templates
Fix blank space added by included Javascript on page refresh or notebook load
Fix blank space added by included Javascript on page refresh or notebook load

File last commit:

r11770:6b8a9d57
r13454:e4709cf4
Show More
python.tpl
54 lines | 1.2 KiB | application/vnd.groove-tool-template | SmartyLexer
Matthias BUSSONNIER
bring back python.tpl
r9605 {%- extends 'null.tpl' -%}
damianavila
Redo of fixing templates structure.
r11770
Matthias BUSSONNIER
bring back python.tpl
r9605 {% block in_prompt %}
damianavila
Redo of fixing templates structure.
r11770 # In[{{ cell.prompt_number if cell.prompt_number else ' ' }}]:
Matthias BUSSONNIER
bring back python.tpl
r9605 {% endblock in_prompt %}
{% block output_prompt %}
damianavila
Redo of fixing templates structure.
r11770 # Out[{{ cell.prompt_number }}]:
{% endblock output_prompt %}
Matthias BUSSONNIER
bring back python.tpl
r9605
damianavila
Redo of fixing templates structure.
r11770 {% block input %}
{{ cell.input | ipython2python }}
Matthias BUSSONNIER
bring back python.tpl
r9605 {% endblock input %}
{# Those Two are for error displaying
even if the first one seem to do nothing,
it introduces a new line
#}
damianavila
Redo of fixing templates structure.
r11770 {% block pyerr %}
{{ super() }}
Matthias BUSSONNIER
bring back python.tpl
r9605 {% endblock pyerr %}
{% block traceback_line %}
damianavila
Redo of fixing templates structure.
r11770 {{ line | indent | strip_ansi }}
{% endblock traceback_line %}
Matthias BUSSONNIER
bring back python.tpl
r9605 {# .... #}
{% block pyout %}
damianavila
Redo of fixing templates structure.
r11770 {{ output.text | indent | comment_lines }}
Matthias BUSSONNIER
bring back python.tpl
r9605 {% endblock pyout %}
{% block stream %}
damianavila
Redo of fixing templates structure.
r11770 {{ output.text | indent | comment_lines }}
Matthias BUSSONNIER
bring back python.tpl
r9605 {% endblock stream %}
{% block display_data scoped %}
# image file:
{% endblock display_data %}
{% block markdowncell scoped %}
Jonathan Frederic
Filter names cleanup
r11685 {{ cell.source | comment_lines }}
Matthias BUSSONNIER
bring back python.tpl
r9605 {% endblock markdowncell %}
{% block headingcell scoped %}
Jonathan Frederic
Filter names cleanup
r11685 {{ '#' * cell.level }}{{ cell.source | replace('\n', ' ') | comment_lines }}
Matthias BUSSONNIER
bring back python.tpl
r9605 {% endblock headingcell %}
{% block rawcell scoped %}
Jonathan Frederic
Filter names cleanup
r11685 {{ cell.source | comment_lines }}
Matthias BUSSONNIER
bring back python.tpl
r9605 {% endblock rawcell %}
{% block unknowncell scoped %}
damianavila
Redo of fixing templates structure.
r11770 unknown type {{ cell.type }}
{% endblock unknowncell %}