1.0.3 • Published 7 years ago

gitbook-plugin-es6tabs-stage-0 v1.0.3

Weekly downloads
2
License
Apache-2.0
Repository
github
Last release
7 years ago

es6tabs

Include ES 6 code blocks, with automatically generated ES 5 preview using Babel.

Forked from https://github.com/GitbookIO/plugin-es6tabs to admit stage-0

Preview

Installation

Adds the plugin to your book.json, then run gitbook install if you are building your book locally.

{
    "plugins": ["es6tabs"]
}

Usage

This is some ES 6 code, you can also see the ES 5 output:

{% es6 -%}
import {test} from './test';

let myVar = 'test';
{%- endes6 %}