1.2.0 • Published 3 years ago

markdown-it-codetabs v1.2.0

Weekly downloads
20
License
MIT
Repository
github
Last release
3 years ago

markdown-it-codetabs

Code tabs plugin for markdown-it markdown parser.

Install

npm install markdown-it-codetabs --save

Use

  1. Render your file:

    var md = require('markdown-it')()
                .use(require('markdown-it-codetabs'));
    // `group` and `tab` can only contain characters in [A-Za-z0-9_].
    md.render('```js [group:tab]\nconsole.log("hello");\n```');
  2. Import your own styles, you can start from codetabs.scss.

MD Example

```js [g1:JavaScript]
console.log("hello");
```

```py [g1:Python3]
print("hello")
```

Notice: DON'T add anything except white space between two code blocks.