Skip to content

Commit 7c1be03

Browse files
committed
init protocols page, fix meeting list
1 parent c30697f commit 7c1be03

50 files changed

Lines changed: 197 additions & 42 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/.vitepress/config.mts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,10 @@ function sidebarReference(): DefaultTheme.SidebarItem[] {
193193
{ text: 'Configuration', link: 'configuration' },
194194
{ text: 'lime-config', link: 'lime-config' },
195195
{ text: 'Flavors', link: 'flavors' },
196+
{ text: 'Default protocols', items: [
197+
{ text: 'Batman-adv', link: 'network/protocols/batman-adv'},
198+
{ text: 'Babeld', link: 'network/protocols/babeld'},
199+
]},
196200
{ text: 'lime-files', items: [
197201
{ text: 'System options', link: 'system' },
198202
{ text: 'Network options', link: 'network/', items: [
@@ -203,7 +207,7 @@ function sidebarReference(): DefaultTheme.SidebarItem[] {
203207
{ text: 'Interface specific options', link: 'network/interface-specific'},
204208
] },
205209
{ text: 'WiFi options', link: 'wifi', items: [
206-
{ text: 'General options', link: 'wifi/#general-options'},
210+
{ text: 'General options', link: 'wifi'},
207211
{ text: 'Band specific options', link: 'wifi/band-specific-options'},
208212
{ text: 'Interface specific options', link: 'wifi/interface-specific'},
209213
] },
@@ -215,7 +219,7 @@ function sidebarReference(): DefaultTheme.SidebarItem[] {
215219
{ text: 'Watchcat', link: 'hardware_detection/watchcat' }
216220
]
217221
},
218-
]}
222+
]},
219223
]
220224
}
221225
]

docs/guide/packages-selection.md

Lines changed: 12 additions & 10 deletions

docs/meetings.data.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
import { createContentLoader } from 'vitepress'
22

3-
export default createContentLoader('meetings/*.md', /* options */)
3+
export default createContentLoader('meetings/**/*.md', {
4+
transform(rawData) {
5+
return rawData.reverse().slice(1).filter(i => i[0] !== '')
6+
}
7+
}/* options */)

0 commit comments

Comments
 (0)