An open API service indexing awesome lists of open source software.

https://github.com/imcuttle/remark-markdown

The plugin of remark for allowing markdown in `html`
https://github.com/imcuttle/remark-markdown

Last synced: 8 months ago
JSON representation

The plugin of remark for allowing markdown in `html`

Awesome Lists containing this project

README

          

# remark-markdown

The plugin of remark for allowing markdown in `html`
[![build status](https://img.shields.io/travis/imcuttle/remark-markdown/master.svg?style=flat-square)](https://travis-ci.org/imcuttle/remark-markdown)
[![Test coverage](https://img.shields.io/codecov/c/github/imcuttle/remark-markdown.svg?style=flat-square)](https://codecov.io/github/imcuttle/remark-markdown?branch=master)
[![NPM version](https://img.shields.io/npm/v/remark-markdown.svg?style=flat-square)](https://www.npmjs.com/package/remark-markdown)
[![NPM Downloads](https://img.shields.io/npm/dm/remark-markdown.svg?style=flat-square&maxAge=43200)](https://www.npmjs.com/package/remark-markdown)

- Input
```markdown


# out

# ab
## cd


```

- HTML Output
```html


# out

ab


cd


```