#mdbook #content #table #toc #pagetoc

bin+lib mdbook-pagetoc

A mdbook plugin that provides a table of contents for each page

11 releases

0.2.0 Apr 29, 2024
0.1.9 Jan 23, 2024
0.1.8 Dec 30, 2023
0.1.7 Mar 12, 2023
0.1.0 Apr 5, 2022

#233 in Text processing

Download history 107/week @ 2024-01-22 149/week @ 2024-01-29 186/week @ 2024-02-05 203/week @ 2024-02-12 185/week @ 2024-02-19 262/week @ 2024-02-26 185/week @ 2024-03-04 212/week @ 2024-03-11 156/week @ 2024-03-18 77/week @ 2024-03-25 93/week @ 2024-04-01 138/week @ 2024-04-08 142/week @ 2024-04-15 97/week @ 2024-04-22 311/week @ 2024-04-29 81/week @ 2024-05-06

637 downloads per month

MPL-2.0 license

17KB
185 lines

mdbook-pagetoc

A mdbook plugin that provides a table of contents for each page. Uses css/js from mdBook-pagetoc.

Show me

Sample image from mdBook-pagetoc:

Notes:

  • Only supports the html renderer.

  • On the first run of mdbook build, it creates two files pagetoc.css and pagetoc.js.

  • You can customize any of them after the first run.

Configuration:

  • Add to book.toml config:

    [preprocessor.pagetoc]
    [output.html]
    additional-css = ["theme/pagetoc.css"]
    additional-js  = ["theme/pagetoc.js"]
    
  • The place marker <div class="sidetoc"><nav class="pagetoc"></nav></div> will be inserted inside the <main> tag. ie. This replaces

    <main>
       {{{ content }}}
    </main>
    

    with:

    <main><div class="sidetoc"><nav class="pagetoc"></nav></div>
        {{{ content }}}
    </main>
    
  • If not customizing, you may want to add entries as appropriate to .gitignore to keep your repo clean:

    theme/pagetoc.css
    theme/pagetoc.js
    
  • Customization: To autohide when only single header, add this snippet to pagetoc.css:

    a[class^='pagetoc-H']:only-child {
      display: none;
    }
    

Acknowledgments

Alternative

Dependencies

~11–25MB
~333K SLoC