+++ title = "Tables of contents" +++ Pattern pages in **Infusion** that have two or more subheadings — `

`s — automatically get a **table of contents**: a list of links to the main subsections for the page. This feature is made accessible as a navigation region with the "Table of contents" label and uses an ordered list. The table of contents markup for the {{% pattern "Library setup" %}} page looks something like this: ```html ``` Tables of contents are a neat way to break down the content of the page and give users a navigable overview. However, they may not be to your taste. Never fear, you can turn tables of contents off by adding `toc = false` to the TOML metadata for your pattern: ``` +++ title = "My page with a few headings" toc = false +++ ```