Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 472 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 472 Bytes

gitbook-plugin-runkit-code [DEPRECATED package] use gitbook-plugin-runkit instead.

Embed runkit in GitBook

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

How to use it?

Configure the plugin in your book.json:

{
    "plugins": ["runkit"]
}

Include a notebook using the runkit block:

Here is notebook:

{% runkit %}
var a = 1;
var b = 2;
var c = a + b;
{% endrunkit %}