折叠边栏(Table 的内容,左侧)部分
Collapse sidebar (Table of Contents, left side) section
如何将 'Collapse sidebar' 按钮添加到我自己的 Docusaurus 网站,如下所示?
在您的 docusaurus.config.js
中,您需要在 themeConfig
类别中添加参数 hideableSidebar: true
。
示例
(module.exports = { // start of the module.export declaration
[…]
themeConfig: {
hideableSidebar: true,
[…]
}
[…]
}); // end of the module-export declaration
参考资料
如何将 'Collapse sidebar' 按钮添加到我自己的 Docusaurus 网站,如下所示?
在您的 docusaurus.config.js
中,您需要在 themeConfig
类别中添加参数 hideableSidebar: true
。
示例
(module.exports = { // start of the module.export declaration
[…]
themeConfig: {
hideableSidebar: true,
[…]
}
[…]
}); // end of the module-export declaration
参考资料