qiciengine / qiciengine-documentation

QICI Engine documentation for API and user manuals

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

QICI Engine Documentation for API and user manuals

QICI Engine Documentation is created by GitBook using Markdown.

You can read QICI Engine Documentation online:

How to build

Here we use npm-run-script to install GitBook environment and convert Markdown to html.

For English Documentation:

npm run install-en
npm run init-en
npm run build-api-en
npm run build-manual-en

For Chinese Documentation:

npm run install-zh
npm run init-zh
npm run build-api-zh
npm run build-manual-zh

The commands above are defined in package.json

"scripts": {
	"install-zh": "npm install gitbook-cli && gitbook install zh/api && gitbook install zh/manual",
	"install-en": "npm install gitbook-cli && gitbook install en/api && gitbook install en/manual",
	"init-zh": "gitbook init zh/api && gitbook init zh/manual",
	"init-en": "gitbook init en/api && gitbook init en/manual",
	"build-api-zh": "gitbook serve zh/api",
	"build-manual-zh": "gitbook serve zh/manual",
	"build-api-en": "gitbook serve en/api",
	"build-manual-en": "gitbook serve en/manual"
}

About

QICI Engine documentation for API and user manuals

License:MIT License


Languages

Language:JavaScript 90.8%Language:HTML 9.2%