Adds syntax to parse sets of code blocks in markdown. Transforms them to tablist.
Live demo: https://codepen.io/ice-zjchen/full/dybevYP
This repository contains the following projects:
remark-codeset
A remark plugin used in the remark processor powered by @unified collective.gatsby-remark-codeset
A sub-plugin of gatsby-transformer-remark plugin used in gatsby.remark-codeset-core
Core libs including tokenize, parser, etc.
~~~codeset ```html <div>Hello CodeSet</div> ``` ```css div { font-size: 32px; } ``` ```js console.log('I am remark-codeset'); ``` ~~~