0.1.2 • Published 4 years ago

remark-container v0.1.2

Weekly downloads
353
License
MIT
Repository
github
Last release
4 years ago

Remark Container

markdown container like markdown-it-container

CircleCI codecov

Example

::: tip
content
:::
::: tip title
content

muliti line
:::

Usage

npm install remark-container or yarn remark-container

const remark = require('remark')
const html = require('remark-html')
remark()
    .use(plugin, opt)
    .use(html).process(`
::: tip title
hello
:::
`)

output

<div class="remark-container tip">
  <p class="remark-container-title">TITLE</p>
  <p>hello</p>
</div>

Options

  • className: class for div container, default remark-container