Fenced container plugin for the showdown markdown parser, idea copied from markdown-it-container
This extension allows you to create block level containers:
::: some-class
*Some text*
:::
Which will be rendered as:
Some text
Usage
var Showdown = ;var showdownContainer = ;// on the server sidevar converter = extensions: showdownContainer ;// on the client side (or with global.showdown set)var converter = extensions: 'container' ;
Future
- define completely arbitrary containers like markdown-it-container
Installation
$ npm install --save showdown-container