##// END OF EJS Templates
rename call methods to transform and postprocess...
rename call methods to transform and postprocess - The `call` methods for nbconvert transformers has been renamed to `transform`. - The `call` methods of nbconvert post-processsors have been renamed to `postprocess`. pinging @Carreau and @jdrefer, who probably knows who'd be affected by this change... maybe @damianavila, @jakevdp

File last commit:

r11242:ffa5c991
r12218:19e43d9d
Show More
codemirror-ipython.js
16 lines | 637 B | application/javascript | JavascriptLexer
/ IPython / html / static / notebook / js / codemirror-ipython.js
Matthias BUSSONNIER
Simplify codemirror ipython-mode...
r11242 // IPython mode is just a slightly altered Python Mode with `?` beeing a extra
// single operator. Here we define `ipython` mode in the require `python`
// callback to auto-load python mode, which is more likely not the best things
// to do, but at least the simple one for now.
Brian E. Granger
Updating ipython CM mode.
r10416
Matthias BUSSONNIER
Simplify codemirror ipython-mode...
r11242 CodeMirror.requireMode('python',function(){
Brian E. Granger
Copying CodeMirror's python mode into place for our ipython mode.
r10415
Matthias BUSSONNIER
Simplify codemirror ipython-mode...
r11242 CodeMirror.defineMode("ipython", function(conf, parserConf) {
Brian E. Granger
Copying CodeMirror's python mode into place for our ipython mode.
r10415
Matthias BUSSONNIER
Simplify codemirror ipython-mode...
r11242 parserConf.singleOperators = new RegExp("^[\\+\\-\\*/%&|\\^~<>!\\?]");
parserConf.name = 'python'
return CodeMirror.getMode(conf, parserConf);
}, 'python');
Brian E. Granger
Copying CodeMirror's python mode into place for our ipython mode.
r10415
Matthias BUSSONNIER
Simplify codemirror ipython-mode...
r11242 CodeMirror.defineMIME("text/x-ipython", "ipython");
})