|
94 | 94 | {% endif %}
|
95 | 95 | {%- endblock any_cell %}
|
96 | 96 |
|
97 |
| -{% block input_group -%} |
98 |
| -{%- if cell.metadata.hide_input -%} |
99 |
| -{%- else -%} |
100 |
| -{{ super() }} |
101 |
| -{%- endif -%} |
102 |
| -{% endblock input_group %} |
103 |
| -
|
104 | 97 |
|
105 | 98 | {% block input -%}
|
106 | 99 | .. nbinput:: {% if cell.metadata.magics_language -%}
|
@@ -662,7 +655,9 @@ class Exporter(nbconvert.RSTExporter):
|
662 | 655 | """
|
663 | 656 |
|
664 | 657 | 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): |
666 | 661 | """Initialize the Exporter."""
|
667 | 662 |
|
668 | 663 | # NB: The following stateful Jinja filters are a hack until
|
@@ -696,12 +691,23 @@ def replace_attachments(text):
|
696 | 691 | self._timeout = timeout
|
697 | 692 | self._codecell_lexer = codecell_lexer
|
698 | 693 | 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 | + |
699 | 700 | super(Exporter, self).__init__(
|
700 | 701 | template_file='nbsphinx-rst.tpl', extra_loaders=[loader],
|
701 | 702 | config=traitlets.config.Config({
|
702 | 703 | 'HighlightMagicsPreprocessor': {'enabled': True},
|
703 | 704 | # Work around https://github.com/jupyter/nbconvert/issues/720:
|
704 | 705 | '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} |
705 | 711 | }),
|
706 | 712 | filters={
|
707 | 713 | 'convert_pandoc': convert_pandoc,
|
@@ -834,6 +840,10 @@ def parse(self, inputstring, document):
|
834 | 840 | allow_errors=env.config.nbsphinx_allow_errors,
|
835 | 841 | timeout=env.config.nbsphinx_timeout,
|
836 | 842 | 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 |
837 | 847 | )
|
838 | 848 |
|
839 | 849 | try:
|
@@ -1740,6 +1750,11 @@ def setup(app):
|
1740 | 1750 | app.add_config_value('nbsphinx_allow_errors', False, rebuild='')
|
1741 | 1751 | app.add_config_value('nbsphinx_timeout', 30, rebuild='')
|
1742 | 1752 | 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') |
1743 | 1758 | # Default value is set in builder_inited():
|
1744 | 1759 | app.add_config_value('nbsphinx_prompt_width', None, rebuild='html')
|
1745 | 1760 | app.add_config_value('nbsphinx_responsive_width', '540px', rebuild='html')
|
|
0 commit comments