##// END OF EJS Templates
Remove test for Ctrl-J/Ctrl-K
Remove test for Ctrl-J/Ctrl-K

File last commit:

r17074:5fba156d
r20391:5b49edb4
Show More
__init__.py
14 lines | 573 B | text/x-python | PythonLexer
Paul Ivanov
replace 'transformer' with 'preprocessor'
r12219 # Class base Preprocessors
from .base import Preprocessor
from .convertfigures import ConvertFiguresPreprocessor
from .svg2pdf import SVG2PDFPreprocessor
from .extractoutput import ExtractOutputPreprocessor
from .revealhelp import RevealHelpPreprocessor
from .latex import LatexPreprocessor
from .csshtmlheader import CSSHTMLHeaderPreprocessor
Pablo de Oliveira
Add HighlightMagicsPreprocessor...
r12573 from .highlightmagics import HighlightMagicsPreprocessor
Julia Evans
Add preprocessor that clears cell outputs
r16295 from .clearoutput import ClearOutputPreprocessor
Julia Evans
Add preprocessor to execute notebooks
r17074 from .execute import ExecutePreprocessor
Matthias BUSSONNIER
expose some transformers at higher level
r10835
Paul Ivanov
replace 'transformer' with 'preprocessor'
r12219 # decorated function Preprocessors
Brian E. Granger
Fixing import for nbconvert.
r11089 from .coalescestreams import coalesce_streams