website: Use configs for nav and sidebars
parent
fae001e4ed
commit
e16dc50686
@ -0,0 +1,80 @@
|
||||
"use strict";
|
||||
|
||||
module.exports = [
|
||||
|
||||
{
|
||||
text: "Try Online",
|
||||
link: "/online",
|
||||
},
|
||||
|
||||
{
|
||||
text: "Documentation",
|
||||
items: [
|
||||
{
|
||||
text: "Guides",
|
||||
link: "/guides/getting-started",
|
||||
},
|
||||
{
|
||||
text: "Grammar",
|
||||
link: "/grammar/",
|
||||
},
|
||||
{
|
||||
text: "API",
|
||||
link: "/guides/javascript-api",
|
||||
},
|
||||
{
|
||||
text: "Compatibility",
|
||||
link: "/guides/compatibility",
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
{
|
||||
text: "Development",
|
||||
items: [
|
||||
{
|
||||
text: "Contribute",
|
||||
link: "/development",
|
||||
},
|
||||
{
|
||||
text: "Changelogs",
|
||||
link: "/changelogs/",
|
||||
},
|
||||
{
|
||||
text: "Source code",
|
||||
link: "https://github.com/pegjs/pegjs",
|
||||
},
|
||||
{
|
||||
text: "Issue tracker",
|
||||
link: "https://github.com/pegjs/pegjs/issues",
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
{
|
||||
text: "Community",
|
||||
items: [
|
||||
{
|
||||
text: "Forums",
|
||||
link: "https://gitq.com/pegjs/pegjs",
|
||||
},
|
||||
{
|
||||
text: "Wiki",
|
||||
link: "https://github.com/pegjs/pegjs/wiki",
|
||||
},
|
||||
{
|
||||
text: "Stack Overflow",
|
||||
link: "https://stackoverflow.com/questions/tagged/pegjs",
|
||||
},
|
||||
{
|
||||
text: "Twitter",
|
||||
link: "https://twitter.com/pegjs",
|
||||
},
|
||||
{
|
||||
text: "Plugins",
|
||||
link: "https://www.npmjs.com/search?q=pegjs%20plugin",
|
||||
}
|
||||
],
|
||||
},
|
||||
|
||||
];
|
@ -0,0 +1,29 @@
|
||||
"use strict";
|
||||
|
||||
module.exports = {
|
||||
|
||||
"/grammar/": [
|
||||
"",
|
||||
"parsing-expression-types",
|
||||
"balanced-braces",
|
||||
"action-execution-environment",
|
||||
"backtracking",
|
||||
"case-insensitivity",
|
||||
"error-messages",
|
||||
[ "tracer", "Tracer" ],
|
||||
],
|
||||
|
||||
"/guides/": [
|
||||
"getting-started",
|
||||
"installation",
|
||||
"command-line",
|
||||
"generating-a-parser",
|
||||
"javascript-api",
|
||||
"plugins",
|
||||
"using-the-parser",
|
||||
"compatibility",
|
||||
],
|
||||
|
||||
"/": false,
|
||||
|
||||
};
|
Loading…
Reference in New Issue