docusaurus plugin auto sidebars
1.0.0
yarn add docusaurus-plugin-auto-sidebars
atau
npm install docusaurus-plugin-auto-sidebars --save
Buat sidebars.auto.js
kosong.auto.js di akar proyek
Tambahkan plugin ini ke array plugins
di docusaurus.config.js
:
module . exports = {
// ...
plugins : [
'docusaurus-plugin-auto-sidebars'
] ,
}
Atau, jika Anda ingin menentukan folder docs
khusus:
module . exports = {
// ...
plugins : [
[ 'docusaurus-plugin-auto-sidebars' , {
docs : 'mydocs'
} ]
] ,
}
Cukup tambahkan sidebars.yaml
di folder docs
Anda:
- folder1 :
- Parent Folder One # First element is the title of parent, next elements are sub directories
- subfolder1 : Sub Folder One
- subfolder2 : Sub Folder Two
- subfolder3 : false # Hide it!
- folder2 :
- Parent Folder Two # First element is the title
- subfolder1 : Sub Folder One
- subfolder2 : Sub Folder Two
Metode 1 : Dengan menambahkan angka ke pengemis file dan folder
1.fileX.md
2.fileY.md
3.fileX.md
Catatan: Anda juga dapat menggunakan angka negatif untuk menampilkannya dalam urutan terbalik: -1. fileX.md
Metode 2 : Tentukan mereka di file sidebars.yaml
- folder1 :
- Parent Folder One : 1 # the order number beside the title
- subfolder1 : Sub Folder One
- subfolder2 : Sub Folder Two
- folder2 :
- Parent Folder Two : 2 # the order number beside the title
- subfolder1 : Sub Folder One
- subfolder2 : Sub Folder Two