1.2.1 • Published 8 years ago

gitbook-plugin-tonic-aca v1.2.1

Weekly downloads
1
License
Apache-2.0
Repository
github
Last release
8 years ago

Embed Tonic in GitBook

This GitBook plugins makes it easy to embed tonic notebook in a GitBook.

How to use it?

Configure the plugin in your book.json:

{
    "plugins": ["tonic"]
}

Include a notebook using the tonic block:

Here is notebook:

{% tonic %}
// GeoJSON!
var google = "https://storage.googleapis.com/maps-devrel/google.json"
JSON.parse(await require("request-promise")(google))
{% endtonic %}


And here is a read-only notebook:

{% tonic readOnly=true %}
// GeoJSON!
var google = "https://storage.googleapis.com/maps-devrel/google.json"
JSON.parse(await require("request-promise")(google))
{% endtonic %}