Skip to content

Commit 21dee9e

Browse files
committedJan 8, 2019
use nbconvert TemplateExporter to hide code cell input (see spatialaudio#131)
1 parent 98a44b1 commit 21dee9e

File tree

1 file changed

+23
-8
lines changed

1 file changed

+23
-8
lines changed
 

‎src/nbsphinx.py

+23-8
Original file line numberDiff line numberDiff line change
@@ -94,13 +94,6 @@
9494
{% endif %}
9595
{%- endblock any_cell %}
9696
97-
{% block input_group -%}
98-
{%- if cell.metadata.hide_input -%}
99-
{%- else -%}
100-
{{ super() }}
101-
{%- endif -%}
102-
{% endblock input_group %}
103-
10497
10598
{% block input -%}
10699
.. nbinput:: {% if cell.metadata.magics_language -%}
@@ -662,7 +655,9 @@ class Exporter(nbconvert.RSTExporter):
662655
"""
663656

664657
def __init__(self, execute='auto', kernel_name='', execute_arguments=[],
665-
allow_errors=False, timeout=30, codecell_lexer='none'):
658+
allow_errors=False, timeout=30, codecell_lexer='none',
659+
exclude_output = False, exclude_input = False,
660+
exclude_markdown = False, exclude_code_cell = False):
666661
"""Initialize the Exporter."""
667662

668663
# NB: The following stateful Jinja filters are a hack until
@@ -696,12 +691,23 @@ def replace_attachments(text):
696691
self._timeout = timeout
697692
self._codecell_lexer = codecell_lexer
698693
loader = jinja2.DictLoader({'nbsphinx-rst.tpl': RST_TEMPLATE})
694+
self._exclude_output = exclude_output
695+
self._exclude_input = exclude_input
696+
self._exclude_markdown = exclude_markdown
697+
self._exclude_code_cell = exclude_code_cell
698+
699+
699700
super(Exporter, self).__init__(
700701
template_file='nbsphinx-rst.tpl', extra_loaders=[loader],
701702
config=traitlets.config.Config({
702703
'HighlightMagicsPreprocessor': {'enabled': True},
703704
# Work around https://github.com/jupyter/nbconvert/issues/720:
704705
'RegexRemovePreprocessor': {'enabled': False},
706+
'TemplateExporter':{
707+
"exclude_output": exclude_output,
708+
"exclude_input": exclude_input,
709+
"exclude_markdown": exclude_markdown,
710+
"exclude_code_cell": exclude_code_cell}
705711
}),
706712
filters={
707713
'convert_pandoc': convert_pandoc,
@@ -834,6 +840,10 @@ def parse(self, inputstring, document):
834840
allow_errors=env.config.nbsphinx_allow_errors,
835841
timeout=env.config.nbsphinx_timeout,
836842
codecell_lexer=env.config.nbsphinx_codecell_lexer,
843+
exclude_output=env.config.nbsphinx_exclude_output,
844+
exclude_input=env.config.nbsphinx_exclude_input,
845+
exclude_markdown=env.config.nbsphinx_exclude_markdown,
846+
exclude_code_cell=env.config.nbsphinx_exclude_code_cell
837847
)
838848

839849
try:
@@ -1740,6 +1750,11 @@ def setup(app):
17401750
app.add_config_value('nbsphinx_allow_errors', False, rebuild='')
17411751
app.add_config_value('nbsphinx_timeout', 30, rebuild='')
17421752
app.add_config_value('nbsphinx_codecell_lexer', 'none', rebuild='env')
1753+
# hide or display input, output,....
1754+
app.add_config_value('nbsphinx_exclude_output', False, rebuild='env')
1755+
app.add_config_value('nbsphinx_exclude_input', False, rebuild='env')
1756+
app.add_config_value('nbsphinx_exclude_markdown', False, rebuild='env')
1757+
app.add_config_value('nbsphinx_exclude_code_cell', False, rebuild='env')
17431758
# Default value is set in builder_inited():
17441759
app.add_config_value('nbsphinx_prompt_width', None, rebuild='html')
17451760
app.add_config_value('nbsphinx_responsive_width', '540px', rebuild='html')

0 commit comments

Comments
 (0)