Skip to content

Commit 73a8808

Browse files
author
Sagar Chalise
committed
sidebar category for naming conventions
1 parent 9eddc57 commit 73a8808

File tree

1 file changed

+45
-4
lines changed

1 file changed

+45
-4
lines changed

sidebars.js

Lines changed: 45 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,47 @@
1-
module.exports = {
1+
module.exports =
2+
{
23
"docs": {
3-
"Overview": ["introduction"],
4-
"Naming Convention": ["files", "classes", "functions", "variables", "constants", "folders"]
4+
"Overview": [
5+
"introduction"
6+
],
7+
"Python": [
8+
{
9+
"type": "subcategory",
10+
"label": "Files, Folders and Modules",
11+
"ids": [
12+
"python/files"
13+
]
14+
},
15+
{
16+
"type": "subcategory",
17+
"label": "Variables",
18+
"ids": [
19+
"python/variables"
20+
]
21+
},
22+
{
23+
"type": "subcategory",
24+
"label": "Functions and Methods",
25+
"ids": [
26+
"python/functions"
27+
]
28+
},
29+
{
30+
"type": "subcategory",
31+
"label": "Classes",
32+
"ids": [
33+
"python/classes"
34+
]
35+
}
36+
],
37+
"Naming Convention": [
38+
"files",
39+
"classes",
40+
"functions",
41+
"variables",
42+
"constants",
43+
"folders"
44+
]
545
}
6-
};
46+
}
47+
;

0 commit comments

Comments
 (0)