docs, gurt:// <a> url

This commit is contained in:
Face
2025-08-15 13:52:01 +03:00
parent c117e602fe
commit 5dae5a4868
25 changed files with 1640 additions and 390 deletions

View File

@@ -13,21 +13,38 @@ import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
Create as many sidebars as you want.
*/
const sidebars: SidebarsConfig = {
// By default, Docusaurus generates a sidebar from the docs folder structure
tutorialSidebar: [{type: 'autogenerated', dirName: '.'}],
// But you can create a sidebar manually
/*
tutorialSidebar: [
'intro',
'hello',
{
type: 'category',
label: 'Tutorial',
items: ['tutorial-basics/create-a-document'],
label: 'GURT Protocol',
items: [
'gurt-protocol',
'gurt-client',
'gurt-server',
'gurty-cli',
],
},
{
type: 'category',
label: 'Ecosystem',
items: [
'dns-system',
'flumi-browser',
],
},
{
type: 'category',
label: 'Web Standards',
items: [
'html',
'css',
],
},
],
*/
// Auto-generated fallback
// tutorialSidebar: [{type: 'autogenerated', dirName: '.'}],
};
export default sidebars;