gitbook plugin [updated pkgs] https://github.com/windhamdavid/gitbook-plugin-prism-dw

崎轩 3ec738f9f4 first commit 10 years ago
book 5133bbe087 Adapt to new js interface 11 years ago
.gitignore 828f3df964 Initial commit 11 years ago
LICENSE 828f3df964 Initial commit 11 years ago
README.md 3ec738f9f4 first commit 10 years ago
index.js 5fd0c4f1ae Update for 2.x.x 10 years ago
package.json 25719d8577 Fix repo urls 11 years ago

README.md

GitBook Sample Plugin

This is a model for GitBook plugins.

How GitBook plugin works?

A plugin for GitBook is a node package that can be published on NPM. It has to follow the name convention: gitbook-plugin-*name*.

package.json

name

The package name should begin with gitbook-plugin-.

Examples: gitbook-plugin-mixpanel, gitbook-plugin-googleanalytics.

engine

The package.json should contain a engine field using the standard norm.

"engines": {
    "gitbook": "*"
}

For example if you want your plugin to supports only GitBook version supperior to 0.3.1:

"engines": {
    "gitbook": ">=0.3.1"
}

entry point

The plugin entry point should return an object with some metadata.

google_code_prettify