File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed
src/jupyter_contrib_nbextensions Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ def _raw_mimetypes_default(self):
49
49
50
50
@property
51
51
def default_config (self ):
52
- c = Config ({'ExtractOutputPreprocessor' : {'enabled' : True }})
52
+ c = Config ({'ExtractOutputPreprocessor' : {'enabled' : False }})
53
53
# import here to avoid circular import
54
54
from jupyter_contrib_nbextensions .nbconvert_support import (
55
55
templates_directory )
Original file line number Diff line number Diff line change @@ -142,3 +142,8 @@ This option requires the IPython kernel and is not present with other kernels.
142
142
+ constrain draggable toc to the body
143
143
+ various bits of cleanup
144
144
+ add settings dialog for per-notebook metadata-stored settings
145
+ - @jfbercher Feb 2018, Option to define a number to begin numbering with.
146
+ - @jcb91 March 2018, Add controls for all per-notebook metadata options
147
+ - @jfbercher December 2018, toc2 history. Moves into the toc2 history of jumps into the notebook, using the forward-back browser buttons.
148
+ - @zthxxx , April 2018, fix toc2.js load failed with working in non-live notebook (with navigation menu enabled)
149
+ - @jfbercher April 2018, Some export tuning
Original file line number Diff line number Diff line change 18
18
$ ( document ).ready (function (){
19
19
20
20
var cfg = { { nb.get(' metadata' , { } ).get(' toc' , { } )|tojson|safe } } ;
21
-
21
+ cfg.navigate_menu= false ;
22
22
// fire the main function with these parameters
23
23
require([' nbextensions/toc2/toc2' ], function (toc2) {
24
24
toc2.table_of_contents(cfg);
You can’t perform that action at this time.
0 commit comments