##// END OF EJS Templates
Merge pull request #5694 from jgoppert/latex-eq-fit...
Merge pull request #5694 from jgoppert/latex-eq-fit Limit latex equations to page width for nbconvert.

File last commit:

r16296:a9860b18
r17401:9443f6a9 merge
Show More
clearoutput.py
27 lines | 925 B | text/x-python | PythonLexer
"""Module containing a preprocessor that removes the outputs from code cells"""
# Copyright (c) IPython Development Team.
# Distributed under the terms of the Modified BSD License.
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
from .base import Preprocessor
#-----------------------------------------------------------------------------
# Classes
#-----------------------------------------------------------------------------
class ClearOutputPreprocessor(Preprocessor):
"""
Removes the output from all code cells in a notebook.
"""
def preprocess_cell(self, cell, resources, cell_index):
"""
Apply a transformation on each cell. See base.py for details.
"""
if cell.cell_type == 'code':
cell.outputs = []
return cell, resources