Remove VuePress
parent
a1cf32d65a
commit
3c05ffe3f9
@ -1,6 +0,0 @@
|
||||
{
|
||||
"eslint.workingDirectories": [
|
||||
".",
|
||||
"docs/.vuepress"
|
||||
]
|
||||
}
|
@ -1,5 +0,0 @@
|
||||
<template>
|
||||
<div id="footer">
|
||||
Released under the <a href="https://opensource.org/licenses/MIT">MIT License</a> | Copyright © 2017+ Futago-za Ryuu
|
||||
</div>
|
||||
</template>
|
@ -1,53 +0,0 @@
|
||||
"use strict";
|
||||
|
||||
// const DEV_ENV = process.env.NODE_ENV !== "production";
|
||||
|
||||
module.exports = {
|
||||
|
||||
title: "PEG.js",
|
||||
description: "A parser generator for JavaScript",
|
||||
head: [
|
||||
|
||||
[ "meta", { "http-equiv": "XA-UA-Compatible", content: "IE=edge" } ],
|
||||
[ "link", { rel: "shortcut icon", href: "/favicon.ico", type: "image/x-icon" } ],
|
||||
|
||||
],
|
||||
dest: "dist",
|
||||
|
||||
themeConfig: {
|
||||
|
||||
nav: require( "./config/nav.js" ),
|
||||
sidebar: require( "./config/sidebar.js" ),
|
||||
sidebarDepth: 0,
|
||||
displayAllHeaders: false,
|
||||
activeHeaderLinks: true,
|
||||
// search: DEV_ENV ? true : false,
|
||||
searchMaxSuggestions: 5,
|
||||
// algolia: DEV_ENV ? void 0 : {
|
||||
|
||||
// apiKey: "<API_KEY>",
|
||||
// indexName: "<INDEX_NAME>"
|
||||
|
||||
// },
|
||||
lastUpdated: true,
|
||||
docsRepo: "pegjs/pegjs",
|
||||
docsDir: "docs",
|
||||
editLinks: true,
|
||||
evergreen: false,
|
||||
smoothScroll: true,
|
||||
|
||||
},
|
||||
|
||||
plugins: [
|
||||
[ "@vuepress/back-to-top", true ],
|
||||
[ "@vuepress/google-analytics", {
|
||||
ga: "UA-100728112-1",
|
||||
} ],
|
||||
],
|
||||
|
||||
extraWatchFiles: [
|
||||
require.resolve( "./config/nav.js" ),
|
||||
require.resolve( "./config/sidebar.js" ),
|
||||
],
|
||||
|
||||
};
|
@ -1,80 +0,0 @@
|
||||
"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",
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
];
|
@ -1,29 +0,0 @@
|
||||
"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,
|
||||
|
||||
};
|
Binary file not shown.
Before Width: | Height: | Size: 318 B |
@ -1,15 +0,0 @@
|
||||
html, body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
height: 100%;
|
||||
}
|
||||
#app {
|
||||
min-height: 100%;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#footer {
|
||||
position: absolute;
|
||||
bottom: 5px;
|
||||
right: 5px;
|
||||
}
|
@ -1,17 +0,0 @@
|
||||
---
|
||||
title: "A parser generator for JavaScript"
|
||||
editLink: false
|
||||
lastUpdated: false
|
||||
---
|
||||
|
||||
PEG.js is a simple parser generator for JavaScript that produces fast parsers with excellent error reporting. You can use it to process complex data or computer languages and build transformers, interpreters, compilers and other tools easily.
|
||||
|
||||
## features
|
||||
|
||||
* Simple and expressive grammar syntax
|
||||
* Integrates both lexical and syntactical analysis
|
||||
* Parsers have excellent error reporting out of the box
|
||||
* Based on the [parsing expression grammar](http://en.wikipedia.org/wiki/Parsing_expression_grammar) formalism
|
||||
* Usable [from your browser](https://pegjs.org/online), from the command line, or via [JavaScript API](guides/javascript-api.md)
|
||||
|
||||
<PageFooter />
|
@ -1 +0,0 @@
|
||||
> Coming soon...
|
@ -1,9 +0,0 @@
|
||||
{
|
||||
"name": "@pegjs/website",
|
||||
"version": "2.0.0-wip",
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@vuepress/plugin-back-to-top": "1.1.0",
|
||||
"@vuepress/plugin-google-analytics": "1.1.0"
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue