Docusaurus - 如何删除目录(table 的内容)?
Docusaurus - How to remove TOC(table of contents)?
我正在为我们的开发文档使用 docusaurus。
如何禁用目录?
谢谢。
Docosaurus 有 Markdown Frontmatter metadata fields for .md
files where you will eventually make use of the hide_table_of_contents
字段并将其设置为 true
。
您的 .md
应如下所示:
---
hide_table_of_contents: true
---
# Markdown Features
My Document Markdown content
我正在为我们的开发文档使用 docusaurus。
如何禁用目录?
谢谢。
Docosaurus 有 Markdown Frontmatter metadata fields for .md
files where you will eventually make use of the hide_table_of_contents
字段并将其设置为 true
。
您的 .md
应如下所示:
---
hide_table_of_contents: true
---
# Markdown Features
My Document Markdown content