##// END OF EJS Templates
Merge pull request #6077 from minrk/json-unicode-keys...
Merge pull request #6077 from minrk/json-unicode-keys allow unicode keys in dicts in json_clean

File last commit:

r12249:4563b2ee
r17148:99cdf189 merge
Show More
base.py
35 lines | 1.0 KiB | text/x-python | PythonLexer
Jonathan Frederic
Moved PDF logic into Post-Processor class
r11747 """
Basic post processor
"""
#-----------------------------------------------------------------------------
#Copyright (c) 2013, the IPython Development Team.
#
#Distributed under the terms of the Modified BSD License.
#
#The full license is in the file COPYING.txt, distributed with this software.
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
from ..utils.base import NbConvertBase
#-----------------------------------------------------------------------------
# Classes
#-----------------------------------------------------------------------------
class PostProcessorBase(NbConvertBase):
def __call__(self, input):
"""
Paul Ivanov
rename call methods to transform and postprocess...
r12218 See def postprocess() ...
Jonathan Frederic
Moved PDF logic into Post-Processor class
r11747 """
Paul Ivanov
rename call methods to transform and postprocess...
r12218 self.postprocess(input)
Jonathan Frederic
Moved PDF logic into Post-Processor class
r11747
Paul Ivanov
rename call methods to transform and postprocess...
r12218 def postprocess(self, input):
Jonathan Frederic
Moved PDF logic into Post-Processor class
r11747 """
Post-process output from a writer.
"""
Paul Ivanov
rename call methods to transform and postprocess...
r12218 raise NotImplementedError('postprocess')