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
- Host: GitHub
- URL: https://github.com/ravenstine/multimarkdown-5-js
- Owner: Ravenstine
- License: other
- Created: 2016-05-14T06:38:42.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-05-18T18:34:26.000Z (about 9 years ago)
- Last Synced: 2025-02-10T08:31:53.247Z (4 months ago)
- Language: JavaScript
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
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
'
```