├── README.md ├── index.html ├── ipython_notebook_toc.js ├── javascripts └── scale.fix.js ├── params.json └── stylesheets ├── pygment_trac.css └── styles.css /README.md: -------------------------------------------------------------------------------- 1 | ipython_notebook_goodies 2 | ======================== 3 | 4 | Random goodies for use in iPython Notebooks. 5 | Tested with the latest iPython Notebook 3.2.0 6 | 7 | 1. Table of Contents 8 | -------------------- 9 | 10 | Make a table of contents for your notebook. Uses headings (e.g. H1, H2, etc.) to build TOC, 11 | and provides anchors (added where needed). 12 | 13 | **Usage:** 14 | 15 | 1. Add a *markdown* cell at the top of your notebook with the following: 16 | ``` 17 |
Random goodies for use in iPython Notebooks
20 | 21 |View the Project on GitHub kmahelona/ipython_notebook_goodies
22 | 23 | 24 |Random goodies for use in iPython Notebooks
35 | 36 |Make a table of contents for your notebook. Uses headings (e.g. H1, H2, etc.) to build TOC, 40 | and provides anchors (added where needed).
41 | 42 |Usage: Include the following at the top of your notebook:
43 | 44 |<h1 id="tocheading">Table of Contents</h1>
45 | <div id="toc"></div>
46 | <script type="text/javascript" src="https://raw.github.com/kmahelona/ipython_notebook_goodies/master/ipython_notebook_toc.js">
47 |
48 |