Skip to content

Commit

Permalink
Group plugins in the documentation (#1176)
Browse files Browse the repository at this point in the history
  • Loading branch information
shagunsodhani authored Dec 2, 2020
1 parent 4d759d5 commit c1eb243
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 24 deletions.
22 changes: 15 additions & 7 deletions website/sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,14 +83,22 @@ module.exports = {
],

'Plugins': [
'plugins/ax_sweeper',
'plugins/colorlog',
'plugins/joblib_launcher',
'plugins/nevergrad_sweeper',
'plugins/optuna_sweeper',
'plugins/ray_launcher',
'plugins/rq_launcher',
'plugins/submitit_launcher',
{
'Launchers': [
'plugins/joblib_launcher',
'plugins/ray_launcher',
'plugins/rq_launcher',
'plugins/submitit_launcher',
]
},
{
'Sweepers': [
'plugins/ax_sweeper',
'plugins/nevergrad_sweeper',
'plugins/optuna_sweeper',
]
},
],

'Reference manual': [
Expand Down
48 changes: 31 additions & 17 deletions website/versioned_sidebars/version-1.0-sidebars.json
Original file line number Diff line number Diff line change
Expand Up @@ -200,29 +200,43 @@
"type": "category",
"label": "Plugins",
"items": [
{
"type": "doc",
"id": "version-1.0/plugins/ax_sweeper"
},
{
"type": "doc",
"id": "version-1.0/plugins/colorlog"
},
{
"type": "doc",
"id": "version-1.0/plugins/joblib_launcher"
},
{
"type": "doc",
"id": "version-1.0/plugins/nevergrad_sweeper"
},
{
"type": "doc",
"id": "version-1.0/plugins/rq_launcher"
"collapsed": true,
"type": "category",
"label": "Launchers",
"items": [
{
"type": "doc",
"id": "version-1.0/plugins/joblib_launcher"
},
{
"type": "doc",
"id": "version-1.0/plugins/rq_launcher"
},
{
"type": "doc",
"id": "version-1.0/plugins/submitit_launcher"
}
]
},
{
"type": "doc",
"id": "version-1.0/plugins/submitit_launcher"
"collapsed": true,
"type": "category",
"label": "Sweepers",
"items": [
{
"type": "doc",
"id": "version-1.0/plugins/ax_sweeper"
},
{
"type": "doc",
"id": "version-1.0/plugins/nevergrad_sweeper"
}
]
}
]
},
Expand Down Expand Up @@ -355,4 +369,4 @@
"items": []
}
]
}
}

0 comments on commit c1eb243

Please sign in to comment.