mirror of
https://gitlab.com/MisterBiggs/brain-quartz.git
synced 2025-07-22 06:11:23 +00:00
.github
content
docs
advanced
features
Docker Support.md
Latex.md
Mermaid diagrams.md
Obsidian compatibility.md
OxHugo compatibility.md
RSS Feed.md
SPA Routing.md
backlinks.md
breadcrumbs.md
callouts.md
darkmode.md
explorer.md
folder and tag listings.md
full-text search.md
graph view.md
i18n.md
index.md
popover previews.md
private pages.md
recent notes.md
syntax highlighting.md
table of contents.md
upcoming features.md
wikilinks.md
images
tags
authoring content.md
build.md
configuration.md
hosting.md
index.md
layout.md
migrating from Quartz 3.md
philosophy.md
setting up your GitHub repository.md
showcase.md
upgrading.md
quartz
.gitattributes
.gitignore
.npmrc
.prettierignore
.prettierrc
CODE_OF_CONDUCT.md
Dockerfile
LICENSE.txt
README.md
globals.d.ts
index.d.ts
package-lock.json
package.json
quartz.config.ts
quartz.layout.ts
tsconfig.json
1.5 KiB
1.5 KiB
title, tags
title | tags | ||
---|---|---|---|
Table of Contents |
|
Quartz can automatically generate a table of contents from a list of headings on each page. It will also show you your current scroll position on the site by marking headings you've scrolled through with a different colour.
By default, it will show all headers from H1 (# Title
) all the way to H3 (### Title
) and will only show the table of contents if there is more than 1 header on the page.
You can also hide the table of contents on a page by adding enableToc: false
to the frontmatter for that page.
[!info] This feature requires both
Plugin.TableOfContents
in yourquartz.config.ts
andComponent.TableOfContents
in yourquartz.layout.ts
to function correctly.
Customization
- Removing table of contents: remove all instances of
Plugin.TableOfContents()
fromquartz.config.ts
. andComponent.TableOfContents()
fromquartz.layout.ts
- Changing the max depth: pass in a parameter to
Plugin.TableOfContents({ maxDepth: 4 })
- Changing the minimum number of entries in the Table of Contents before it renders: pass in a parameter to
Plugin.TableOfContents({ minEntries: 3 })
- Collapse the table of content by default: pass in a parameter to
Plugin.TableOfContents({ collapseByDefault: true })
- Component:
quartz/components/TableOfContents.tsx
- Style:
- Modern (default):
quartz/components/styles/toc.scss
- Legacy Quartz 3 style:
quartz/components/styles/legacyToc.scss
- Modern (default):
- Script:
quartz/components/scripts/toc.inline.ts