quartz-research-note/quartz/components/TableOfContents.tsx

20 lines
524 B
TypeScript
Raw Normal View History

2023-06-10 06:06:02 +00:00
import { QuartzComponentProps } from "./types"
import style from "./styles/toc.scss"
export default function TableOfContents({ fileData }: QuartzComponentProps) {
2023-06-10 06:06:02 +00:00
if (!fileData.toc) {
return null
}
return <details class="toc" open>
<summary><h3>Table of Contents</h3></summary>
<ul>
{fileData.toc.map(tocEntry => <li key={tocEntry.slug} class={`depth-${tocEntry.depth}`}>
<a href={`#${tocEntry.slug}`}>{tocEntry.text}</a>
</li>)}
</ul>
</details>
2023-06-10 06:06:02 +00:00
}
TableOfContents.css = style