Skip to content
This repository has been archived by the owner on Dec 31, 2021. It is now read-only.
/ markdown-it-codetabs Public archive

Code tabs plugin for markdown-it markdown parser.

License

Notifications You must be signed in to change notification settings

cncws/markdown-it-codetabs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.