|
| 1 | +# jekyll-table-of-contents |
| 2 | + |
| 3 | +A simple JavaScript table of contents generator. Works well with [jekyll](https://github.com/mojombo/jekyll) static sites. |
| 4 | + |
| 5 | +## Usage |
| 6 | + |
| 7 | +### Basic Usage |
| 8 | + |
| 9 | +The script requires jQuery. First, reference `toc.js` in templates where you would like to add the table of content. |
| 10 | +Then, create an HTML element wherever you want your table of contents to appear: |
| 11 | + |
| 12 | +```html |
| 13 | +<div id="toc"></div> |
| 14 | +``` |
| 15 | + |
| 16 | +Finally, call the `.toc()` function when the DOM is ready: |
| 17 | + |
| 18 | +```html |
| 19 | +<script type="text/javascript"> |
| 20 | +$(document).ready(function() { |
| 21 | + $('#toc').toc(); |
| 22 | +}); |
| 23 | +</script> |
| 24 | +``` |
| 25 | + |
| 26 | +If you use redcarpet, you need to have the option `with_toc_data` in order to add HTML anchors to each header: |
| 27 | +```yaml |
| 28 | +markdown: redcarpet |
| 29 | +redcarpet: |
| 30 | + extensions: [with_toc_data] |
| 31 | +``` |
| 32 | +
|
| 33 | +If you use rdiscount, enable the following option in order to generate the TOC: |
| 34 | +```yaml |
| 35 | +markdown: rdiscount |
| 36 | +rdiscount: |
| 37 | + extensions: |
| 38 | + - generate_toc |
| 39 | +``` |
| 40 | +
|
| 41 | +### How It Works |
| 42 | +
|
| 43 | +The script works by looking for headers (h1, h2, h3, h4, h5, h6) which have an `id`. |
| 44 | +An id is added automatically if you're using Jekyll and [Markdown](http://daringfireball.net/projects/markdown/syntax#header). |
| 45 | + |
| 46 | +The table of contents automatically handles nesting of headers. For example, this Markdown post: |
| 47 | + |
| 48 | + ## Title |
| 49 | + ## Page 1 |
| 50 | + ### Note on Paragraph 3 |
| 51 | + ## Page 2 |
| 52 | + ### Note on Paragraph 2 |
| 53 | + ### Note on Paragraph 4 |
| 54 | + |
| 55 | +Will render this table of contents: |
| 56 | + |
| 57 | + 1. Title |
| 58 | + 2. Page 1 |
| 59 | + a. Note on Paragraph 3 |
| 60 | + 3. Page 2 |
| 61 | + a. Note on Paragraph 2 |
| 62 | + b. Note on Paragraph 4 |
| 63 | + |
| 64 | +### Configuration |
| 65 | + |
| 66 | +#### List Type |
| 67 | +By default the table of contents is rendered as an `<ol>`, so you can change the number formatting using CSS. |
| 68 | +However you can use the `<ul>` tag, using the `listType` option: |
| 69 | + |
| 70 | +```javascript |
| 71 | +$('#toc').toc({ listType: 'ul' }); |
| 72 | +``` |
| 73 | + |
| 74 | +#### Header Styling |
| 75 | +The script also adds an `<i>` tag next to each header. This uses the class `icon-arrow-up`, which if you're using [Bootstrap](http://twitter.github.io/bootstrap/), will be an arrow pointing to the top of the page. |
| 76 | +Clicking that arrow will scroll you to the top, while clicking on a header will get a permanent link to that particular header (using `window.location.hash`). |
| 77 | + |
| 78 | +If you don't want this feature, add this setting: |
| 79 | + |
| 80 | +```javascript |
| 81 | +$('#toc').toc({ noBackToTopLinks: true }); |
| 82 | +``` |
| 83 | + |
| 84 | +Otherwise, you can use the stylesheet below to have the icon and the header aligned nicely: |
| 85 | + |
| 86 | +```css |
| 87 | +.clickable-header { |
| 88 | + cursor:pointer; |
| 89 | +} |
| 90 | +.clickable-header:hover { |
| 91 | + text-decoration:underline; |
| 92 | +} |
| 93 | +.top-level-header { |
| 94 | + display:inline; |
| 95 | +} |
| 96 | +.back-to-top { |
| 97 | + margin-left:5px; |
| 98 | + cursor:pointer; |
| 99 | +} |
| 100 | +``` |
| 101 | + |
| 102 | +#### Headers Used |
| 103 | +By default the table of content is displayed when at least 3 headers are found. |
| 104 | +You can customize the minimum number of headers required with this setting: |
| 105 | + |
| 106 | +```javascript |
| 107 | +$('#toc').toc({ minimumHeaders: 2 }); |
| 108 | +``` |
| 109 | + |
| 110 | +And you can also select which headers you want to link to. By default `h1, h2, h3, h4, h5, h6` are displayed, but changing the `headers` setting lets you tweak it: |
| 111 | + |
| 112 | +```javascript |
| 113 | +$('#toc').toc({ headers: 'h3, h4, h5, h6' }); |
| 114 | +$('#toc').toc({ headers: '.content h1, .content h2, .content h3, .content h4, .content h5, .content h6' }); |
| 115 | +``` |
| 116 | + |
| 117 | +#### Effects |
| 118 | +Finally, you can also change the way the toc is displayed, choosing a `slideShow` or a `fadeIn` effect instead of `show`: |
| 119 | + |
| 120 | +```javascript |
| 121 | +$('#toc').toc({ showEffect: 'slideDown' }); |
| 122 | +``` |
| 123 | + |
| 124 | +Otherwise, to deactivate the effect, set it up like this: |
| 125 | + |
| 126 | +```javascript |
| 127 | +$('#toc').toc({ showSpeed: 0 }); |
| 128 | +``` |
| 129 | + |
| 130 | +## Copyright |
| 131 | + |
| 132 | +See LICENSE.txt for further details. But basically, do what you like with this. |
0 commit comments