#!/usr/bin/env python # coding: utf-8 # # Test notebook # # Below is a normal cell with input and output: # In[1]: print("Hello") # Below is a cell with a tag 'remove-input': # In[2]: print("Hello from a hidden cell") # The input of that cell is hidden by setting: # # ```python # c.TagRemovePreprocessor.remove_input_tags = {'remove-input'} # ``` # # in `jupyter_nbconvert_config.py` # # See [./test-skip.md](./test-skip.md) for the markdown output of # # jupyter nbconvert --to markdown test-skip.ipynb