A very simple document generator.
npm install simpler-paper
> A very simple document generator. preview.
> Quickly build and deploy markdown files with a few commands.
npm i -g simpler-paper paper init . To create the document folder or generate the config file in existing folder. paper build . If you want to preview, run paper server . paper deploy . Deploy a Git repository to GitHub.paper.config.json file in the document directory.> Run paper init can quickly create paper.config.json
``typescript
// paper.config.json
{
// document the alias, the value will be displayed after compilation, default: null
"alias": {
"quickstart": "Getting Started",
...
},
// document title, default: "simpler paper"
"title": "",
// back to top button, default: true
"backToTop": true,
// document page path, default: "/"
"docPath": "/",
// loading indicator, default: true
"indicator": true
}
``