@@ -4,54 +4,75 @@ module.exports = {
4
4
plugins : [ "@vuepress/active-header-links" ] ,
5
5
themeConfig : {
6
6
logo : "/restsharp.png" ,
7
- nav : [
8
- { text : "Get help" , link : "/get-help/" } ,
9
- { text : "Gitter" , link : "https://gitter.im/RestSharp/RestSharp" } ,
7
+ navbar : [
8
+ { text : "vNext" , link : "/v107/" } ,
9
+ { text : "Documentation" , link : "/intro.html" } ,
10
+ { text : "Get help" , link : "/support/" } ,
10
11
{ text : "NuGet" , link : "https://nuget.org/packages/RestSharp" }
11
12
] ,
12
13
sidebarDepth : 2 ,
13
- sidebar : [
14
- {
15
- title : "Getting Started" ,
16
- path : "/getting-started/" ,
17
- collapsable : false ,
18
- children : [
19
- "/getting-started/" ,
20
- "/getting-started/getting-started"
21
- ]
22
- } ,
23
- {
24
- title : "Using RestSharp" ,
25
- path : "/usage/" ,
26
- collapsable : false ,
27
- children : [
28
- "/usage/serialization" ,
29
- "/usage/files" ,
30
- "/usage/authenticators" ,
31
- "/usage/parameters" ,
32
- "/usage/exceptions"
33
- ]
34
- } ,
35
- {
36
- title : "Got stuck?" ,
37
- path : "/get-help/" ,
38
- collapsable : false ,
39
- children : [
40
- "/get-help/faq"
41
- ]
42
- } ,
43
- {
44
- title : "Reference" ,
45
- path : "/api/" ,
46
- collapsable : true ,
47
- children : [
48
- "/api/RestSharp" ,
49
- "/api/RestSharp.Serializers.NewtonsoftJson" ,
50
- "/api/RestSharp.Serializers.SystemTextJson" ,
51
- "/api/RestSharp.Serializers.Utf8Json" ,
52
- ]
53
- }
54
- ] ,
14
+ sidebar : {
15
+ "/" : [
16
+ {
17
+ text : "" ,
18
+ header : "RestSharp" ,
19
+ children : [
20
+ "intro.md" ,
21
+ "usage.md" ,
22
+ "authenticators.md"
23
+ ]
24
+ }
25
+ ] ,
26
+ "/v107/" : [
27
+ {
28
+ text : "" ,
29
+ header : "RestSharp vNext" ,
30
+ children : [
31
+ "/v107/README.md"
32
+ ]
33
+ }
34
+ ] ,
35
+ "/support/" : [
36
+ {
37
+ text : "" ,
38
+ header : "Get help" ,
39
+ children : [
40
+ "/support/README.md"
41
+ ]
42
+ }
43
+ ]
44
+ } ,
45
+ // [
46
+ // {
47
+ // title: "Getting Started",
48
+ // path: "/getting-started/",
49
+ // collapsable: false,
50
+ // children: [
51
+ // "/getting-started/",
52
+ // "/getting-started/getting-started"
53
+ // ]
54
+ // },
55
+ // {
56
+ // title: "Using RestSharp",
57
+ // path: "/usage/",
58
+ // collapsable: false,
59
+ // children: [
60
+ // "/usage/serialization",
61
+ // "/usage/files",
62
+ // "/usage/authenticators",
63
+ // "/usage/parameters",
64
+ // "/usage/exceptions"
65
+ // ]
66
+ // },
67
+ // {
68
+ // title: "Got stuck?",
69
+ // path: "/get-help/",
70
+ // collapsable: false,
71
+ // children: [
72
+ // "/get-help/faq"
73
+ // ]
74
+ // }
75
+ // ],
55
76
searchPlaceholder : "Search..." ,
56
77
lastUpdated : "Last Updated" ,
57
78
repo : "restsharp/RestSharp" ,
0 commit comments