##// END OF EJS Templates
Fix configurability of codecell...
Fix configurability of codecell code cell where actually not configurable, this fixes that + add a convenient methods to dump the content of the configuration in the config file. this also close #7896 by defaulting closebracket to true, which is now configurable :-) It also switches the default magic highlight mode to string so that they could also be configured.

File last commit:

r20554:5f9d376a
r20604:8fd5f5a9
Show More
namespace.js
10 lines | 265 B | application/javascript | JavascriptLexer
Jonathan Frederic
Make page.html require.js friendly.
r17188 // Copyright (c) IPython Development Team.
// Distributed under the terms of the Modified BSD License.
Jonathan Frederic
Fixed global IPython namespace.
r17191 var IPython = IPython || {};
Jonathan Frederic
Make page.html require.js friendly.
r17188 define([], function(){
Matthias Bussonnier
Some cleanup unused code and missig use-strict
r18991 "use strict";
Thomas Kluyver
back to development
r20554 IPython.version = "3.1.0-dev";
Min RK
ensure IPython._target is defined
r20326 IPython._target = '_blank';
Jonathan Frederic
Make page.html require.js friendly.
r17188 return IPython;
});