Skip to content

Commit d2489c0

Browse files
Merge pull request #45 from riscv/patch-39-remove-dev-focus
Continuing changes prior to release
2 parents ae16e01 + e66eb67 commit d2489c0

File tree

2 files changed

+52
-76
lines changed

2 files changed

+52
-76
lines changed

docusaurus.config.ts

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -93,30 +93,7 @@ const config: Config = {
9393
{
9494
label:'Specifications',
9595
position:'left',
96-
items:[
97-
{
98-
type: 'doc',
99-
docId: 'spec/isa',
100-
label: 'ISA',
101-
// docsPluginId: 'tool1',
102-
to:"/docs/spec/reference",
103-
},
104-
{
105-
type: 'doc',
106-
docId: 'spec/profiles',
107-
label: 'Profiles',
108-
// docsPluginId: 'tool1',
109-
to:"/docs/spec/profiles",
110-
},
111-
{
112-
113-
// href: '/docs/category/non-isa-specifications',
114-
label: 'Non-ISA',
115-
docId: 'spec/non-isa',
116-
// docsPluginId: 'tool1',
117-
to:"/docs/spec/non-isa",
118-
},
119-
]
96+
to:"/docs/spec/reference",
12097
},
12198
// {
12299
// label:'Developers',

sidebars.ts

Lines changed: 51 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ const sidebars: SidebarsConfig = {
2020

2121
// specSidebar:[{type: 'autogenerated', dirName: 'spec'}],
2222
specSidebar: [
23-
'spec/reference',
2423
// 'spec/get_started',
2524
// {
2625
// type: 'category',
@@ -37,52 +36,52 @@ const sidebars: SidebarsConfig = {
3736
// '<span style="border-top: 1px solid var(--ifm-color-gray-500); display: block;margin: 0.5rem 0 0.25rem 1rem;" />',
3837
// },
3938
{
40-
type:'category',
41-
label:'The ISA Specification',
42-
// link: {type: 'doc', id: 'spec/isa'},
39+
type: 'category',
40+
label:'Reference',
41+
link: {type: 'doc', id: 'spec/reference'},
4342
items:[
44-
{
45-
type:"link",
46-
label:"ISA Volume 1: Priv",
47-
href:"pathname:///docs/reference/isa/unpriv/intro.html",
48-
},
49-
{
50-
type:"link",
51-
label:"ISA Volume 2: Un-Priv",
52-
href:"pathname:///docs/reference/isa/priv/priv-intro.html",
53-
},
5443

55-
],
56-
},
57-
{
58-
type:'category',
59-
label:'Profiles',
60-
// link: {type: 'doc', id: 'spec/profiles'},
61-
items:[
6244
{
63-
type:"doc",
64-
label:"RVA23",
65-
id:"spec/profiles/rva23",
66-
},
67-
{
68-
type:"doc",
69-
label:"RVB23",
70-
id:"spec/profiles/rvb23",
45+
type:'category',
46+
label:'The ISA Specification',
47+
// link: {type: 'doc', id: 'spec/isa'},
48+
items:[
49+
{
50+
type:"link",
51+
label:"ISA Volume 1: Priv",
52+
href:"pathname:///docs/reference/isa/unpriv/intro.html",
53+
},
54+
{
55+
type:"link",
56+
label:"ISA Volume 2: Un-Priv",
57+
href:"pathname:///docs/reference/isa/priv/priv-intro.html",
58+
},
59+
60+
],
7161
},
7262
{
73-
type:"doc",
74-
label:"RISC-V Profiles",
75-
id:"spec/profiles/riscv-profiles",
76-
},
63+
type:'category',
64+
label:'Profiles',
65+
// link: {type: 'doc', id: 'spec/profiles'},
66+
items:[
67+
{
68+
type:"doc",
69+
label:"RVA23",
70+
id:"spec/profiles/rva23",
71+
},
72+
{
73+
type:"doc",
74+
label:"RVB23",
75+
id:"spec/profiles/rvb23",
76+
},
77+
{
78+
type:"doc",
79+
label:"RISC-V Profiles",
80+
id:"spec/profiles/riscv-profiles",
81+
},
7782

78-
],
79-
},
80-
{
81-
type:'category',
82-
label: 'Non-ISA',
83-
collapsed:true,
84-
// link: {type: 'doc', id:'spec/non-isa'},
85-
items:[
83+
],
84+
},
8685
{
8786
type:'category',
8887
label:'Processor Infrastructure',
@@ -140,19 +139,19 @@ const sidebars: SidebarsConfig = {
140139
// csr,
141140
// ],
142141
// },
142+
143+
// {
144+
// type:'category',
145+
// label:'Non-ISA Specifications',
146+
// link: {type: 'doc', id: 'spec/non-isa'},
147+
// items:[
148+
// {
149+
// type:'autogenerated', dirName: 'spec/non-isa'
150+
// }
151+
// ],
152+
// },
143153
],
144-
145154
},
146-
// {
147-
// type:'category',
148-
// label:'Non-ISA Specifications',
149-
// link: {type: 'doc', id: 'spec/non-isa'},
150-
// items:[
151-
// {
152-
// type:'autogenerated', dirName: 'spec/non-isa'
153-
// }
154-
// ],
155-
// },
156155
],
157156

158157
};

0 commit comments

Comments
 (0)