mirror of
https://github.com/waku-org/docs.waku.org.git
synced 2025-02-20 16:58:22 +00:00
Add section for JavaScript documentation
This commit is contained in:
parent
d814c29c30
commit
d8b256f5c0
5
docs/browser/introduction.md
Normal file
5
docs/browser/introduction.md
Normal file
@ -0,0 +1,5 @@
|
||||
---
|
||||
title: Introduction
|
||||
---
|
||||
|
||||
js-waku doc goes here
|
@ -49,9 +49,16 @@ const config = {
|
||||
title: "Waku",
|
||||
items: [
|
||||
{
|
||||
label: "Docs",
|
||||
type: "doc",
|
||||
docId: "introduction",
|
||||
type: 'docSidebar',
|
||||
position: 'left',
|
||||
sidebarId: 'main',
|
||||
label: 'Overview',
|
||||
},
|
||||
{
|
||||
type: 'docSidebar',
|
||||
position: 'left',
|
||||
sidebarId: 'browser',
|
||||
label: 'JavaScript (Browser)',
|
||||
},
|
||||
],
|
||||
},
|
||||
|
37
sidebars.js
37
sidebars.js
@ -3,32 +3,35 @@
|
||||
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
|
||||
|
||||
const sidebars = {
|
||||
docs: [
|
||||
"introduction",
|
||||
"history",
|
||||
"motivation-and-goals",
|
||||
"why-waku",
|
||||
"who-is-using-waku",
|
||||
"implementations",
|
||||
"how-does-it-work",
|
||||
main: [
|
||||
"main/introduction",
|
||||
"main/history",
|
||||
"main/motivation-and-goals",
|
||||
"main/why-waku",
|
||||
"main/who-is-using-waku",
|
||||
"main/implementations",
|
||||
"main/how-does-it-work",
|
||||
{
|
||||
type: "category",
|
||||
label: "Concepts",
|
||||
collapsed: false,
|
||||
collapsible: true,
|
||||
items: [
|
||||
"Concepts/different-protocols",
|
||||
"Concepts/protocols-explained",
|
||||
"Concepts/protocols-overview-by-example",
|
||||
"Concepts/discovery-and-bootstrap",
|
||||
"Concepts/transports-in-waku",
|
||||
"Concepts/content-topics",
|
||||
"Concepts/security-features",
|
||||
"Concepts/research-in-progress",
|
||||
"Concepts/waku-vs-libp2p",
|
||||
"main/concepts/different-protocols",
|
||||
"main/concepts/protocols-explained",
|
||||
"main/concepts/protocols-overview-by-example",
|
||||
"main/concepts/discovery-and-bootstrap",
|
||||
"main/concepts/transports-in-waku",
|
||||
"main/concepts/content-topics",
|
||||
"main/concepts/security-features",
|
||||
"main/concepts/research-in-progress",
|
||||
"main/concepts/waku-vs-libp2p",
|
||||
],
|
||||
},
|
||||
],
|
||||
browser: [
|
||||
"browser/introduction"
|
||||
]
|
||||
};
|
||||
|
||||
module.exports = sidebars;
|
||||
|
Loading…
x
Reference in New Issue
Block a user