Generates a table of contents for a printed HTML document.
import generateTOC from "print-toc";
- Add an element to the page with the id
table-of-contents
. - Add a
data-section
attribute to any headings you want to be included. If you want a custom section ID, pass it as a value todata-section
. - Call
generateTOC
in the page.
A clickable table of contents will then be inserted into #table-of-contents
.
The script defines some CSS classes for customizing page-break behavior without breaking page number calculation. These classes can be nested and used in combination.
.page
setspage-break-inside: avoid;
. Use this on elements you don't want to be broken apart by page boundaries..break
setspage-break-before: always;
. This will force a page break before the element.
Since we have no way of accessing the print layout from JS-land, a few requirements must be met to properly compute page numbers:
- Do not modify the margin or padding of
.break
or.page
elements. - Do not define any
page-break-
styles. Page-break detection relies on the predefined layout classes. - Print to an 8.5inx11in page with 0.75in margins. If you need other sizes, you'll have to add page width and height calculation to the script.
There is some complexity to determining what page an element will be on with changing content and styles. There are bound to be some cases where incorrect page numbers are generated.
Pass true
as an argument to enable debug mode. This will print more detailed
spacing information in the table of contents, display red dividers at computed
page boundaries, and insert vertical margins in the page to show the page breaks
expected by the script.