1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

FoundingBaseAdvent Calendar 2024

Day 19

Docusaurus でインライン TOC (Table of Contents) を表示させる

Last updated at Posted at 2024-12-18

はじめに

Meta社が管理する React ベースのドキュメント管理ツール Docusaurus 。

Docusaurus は Markdown (.md) に加えて MDX (.mdx) も表示可能です。
MDX でドキュメントを書くことで ドキュメント内に React Component も表示可能になります。

今回は、標準で用意されている Inline TOC (Table of Contents)を表示させる方法を記載します。

ドキュメントの用意

インライン TOC を表示させたいドキュメントを用意します。
すでに Markdown 形式でドキュメントを書いていた場合は拡張子を .md から .mdx に変更してください。

docs/test.md
# 見出し1

これは Docusaurus の Inline TOC のテストのためのドキュメントです。

## 見出し2_1

見出し2_1 のテキスト

## 見出し2_2

見出し2_2 のテキスト

## 見出し2_3

見出し2_3 のテキスト

## 見出し2_4

見出し2_4 のテキスト

Inline TOC を表示させる定義の追加

用意済みのドキュメント (docs/test.md) に TOCInline 表示用の Component を import します。

import TOCInline from '@theme/TOCInline';

<TOCInline toc={toc} />
docs/test.md
import TOCInline from '@theme/TOCInline';

# 見出し1

これは Docusaurus の Inline TOC のテストのためのドキュメントです。

<TOCInline toc={toc} />

## 見出し2_1

見出し2_1 のテキスト

## 見出し2_2

見出し2_2 のテキスト

## 見出し2_3

見出し2_3 のテキスト

## 見出し2_4

見出し2_4 のテキスト

下記スクリーンショットのように Inline TOC が表示されます。

image.png

さいごに

今回は Inline TOC の説明だけに留めましたが、自身で React Component を定義することでドキュメントをよりリッチにすることも可能です。

Ref

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?