Files
jupyter_contrib_nbextensions/templates/hide_input_output.tpl
T
2015-09-01 13:03:39 +02:00

17 lines
291 B
Smarty

{%- extends 'full.tpl' -%}
{% block input_group -%}
{%- if cell.metadata.hide_input -%}
{%- else -%}
{{ super() }}
{%- endif -%}
{% endblock input_group %}
{% block output_group -%}
{%- if cell.metadata.hide_output -%}
{%- else -%}
{{ super() }}
{%- endif -%}
{% endblock output_group %}