##// END OF EJS Templates
less newline
Matthias BUSSONNIER -
Show More
@@ -6,17 +6,17 b''
6 {% if cell.outputs %}
6 {% if cell.outputs %}
7 # Out[{{cell.prompt_number}}]:
7 # Out[{{cell.prompt_number}}]:
8 {%- for output in cell.outputs -%}
8 {%- for output in cell.outputs -%}
9 {% if output.output_type in ['pyout','stream']%}
9 {%- if output.output_type in ['pyout','stream']%}
10 {{ output.text| indent | pycomment}}
10 {{ output.text| indent | pycomment}}
11 {% elif output.output_type in ['display_data'] %}
11 {%- elif output.output_type in ['display_data'] %}
12 {{"# fucking display_data"}}
12 {{"# image file: fucking display_data"}}
13 {% elif output.output_type in ['pyerr'] %}
13 {%- elif output.output_type in ['pyerr'] %}
14 {% for line in output.traceback %}
14 {%- for line in output.traceback %}
15 {{ line |indent| rm_ansi}}
15 {{ line |indent| rm_ansi}}
16 {%- endfor %}
17 {%- endif %}
16 {%- endfor -%}
18 {%- endfor -%}
17 {%- endif -%}
19 {% endif %}
18 {%- endfor -%}
19 {%endif%}
20
20
21 {% endblock codecell %}
21 {% endblock codecell %}
22
22
General Comments 0
You need to be logged in to leave comments. Login now