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

https://github.com/ravenstine/multimarkdown-5-js

Emscripten port of MultiMarkdown 5
https://github.com/ravenstine/multimarkdown-5-js

Last synced: about 2 months ago
JSON representation

Emscripten port of MultiMarkdown 5

Awesome Lists containing this project

README

        

multimarkdown-js
==================
Render [MultiMarkdown](https://github.com/fletcher/MultiMarkdown-5) to HTML with JavaScript in both Node.js and the Browser! Powered by Emscripten.

## Prerequisites

- You do have Git and NPM installed, right?
- Gulp - `npm install -g gulp`
- [Emscripten SDK](https://kripken.github.io/emscripten-site/docs/getting_started/downloads.html)

## Installation

`npm install --save ravenstine/multimarkdown-5-js`

If your prerequisites are installed and initialized correctly, the source of MultiMarkdown v5 should be pulled and compiled to JS with Emscripten and you should be ready to go.

## Usage

```javascript
var MultiMarkdown = require('multimarkdown-js');

MultiMarkdown.render('## Hello World');

// '

Hello World

'
```