Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

remark-markdown

imcuttle1.1kMIT0.0.1

The plugin of remark for allowing markdown in html

imcuttle, remark-markdown

readme

remark-markdown

The plugin of remark for allowing markdown in html build status Test coverage NPM version NPM Downloads

  • Input

    <div>
    # out
    <markdown>
    # ab
    ## cd
    </markdown>
    </div>
  • HTML Output

    <div>
    # out
    <markdown>
    <h1>ab</h1>
    <h2>cd</h2>
    </markdown>
    </div>