-
Notifications
You must be signed in to change notification settings - Fork 9
/
sidebars.js
52 lines (50 loc) · 1.16 KB
/
sidebars.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
docs: [
'quickstart',
{
type: 'category',
label: 'Installation',
link: {
type: 'doc',
id: 'install/index'
},
items: [
'install/linux',
'install/macos',
'install/vs',
'install/mingw',
'install/android',
'install/freebsd'
]
},
'features',
'dpdk',
{
type: 'category',
label: 'Tutorials',
link: {
type: 'generated-index',
title: 'PcapPlusPlus Tutorials',
description:
'The following tutorials cover the basic and most important features and APIs of PcapPlusPlus and should give a good understanding of how to work with the library',
slug: 'tutorials'
},
items: [
'tutorials/intro',
'tutorials/read-write-pcap',
'tutorials/capture-packets',
'tutorials/packet-parsing',
'tutorials/packet-crafting',
'tutorials/dpdk'
]
},
'platforms',
'examples',
'benchmark',
'tests',
'api'
]
};
module.exports = sidebars;