remark-container

0.1.2 • Public • Published

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

Dependents (3)

Package Sidebar

Install

npm i remark-container

Weekly Downloads

123

Version

0.1.2

License

MIT

Unpacked Size

8.71 kB

Total Files

8

Last publish

Collaborators

  • zzwing