##// END OF EJS Templates
fix check for empty cells in rst template...
MinRK -
Show More
@@ -8,7 +8,7 b''
8 {% endblock output_prompt %}
8 {% endblock output_prompt %}
9
9
10 {% block input %}
10 {% block input %}
11 {%- if not cell.input.isspace() -%}
11 {%- if cell.input.strip() -%}
12 .. code:: python
12 .. code:: python
13
13
14 {{ cell.input | indent}}
14 {{ cell.input | indent}}
General Comments 0
You need to be logged in to leave comments. Login now