Markdown parser, done right. 100% CommonMark support, extensions, syntax plugins & high speed https://markdown-it.github.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

76 lines
1.4 KiB

10 years ago
cooming soon
remarkable
==========
[![Build Status](https://travis-ci.org/jonschlinkert/remarkable.svg?branch=master)](https://travis-ci.org/jonschlinkert/remarkable)
[![NPM version](https://img.shields.io/npm/v/remarkable.svg)](https://www.npmjs.org/package/remarkable)
Markdown parser done right. Fast and easy to extend.
[Live demo](http://jonschlinkert.github.io/remarkable/demo/)
10 years ago
/INTRO/
10 years ago
Install
-------
node.js:
```bash
npm install remarkable --save
```
bower:
```bash
bower install remarkable --save
```
10 years ago
Usage
-----
```javascript
var Remarkable = require('remarkable');
var md = new Remarkable({
html: false,
xhtml: false,
breaks: true,
langprefix: 'language-',
highlight: function (str, lang) { return str; }
});
10 years ago
console.log(md.parse('# Remarkable rulezz!'));
//=> <h1># Remarkable rulezz!</h1>
```
You can define options via `set` method:
```javascript
var Remarkable = require('remarkable');
10 years ago
var md = new Remarkable();
md.set({
html: false,
xhtml: false,
breaks: true,
langprefix: 'language-',
highlight: function (str, lang) { return str; }
10 years ago
});
```
Authors
-------
- Jon Schlinkert [github/jonschlinkert](https://github.com/jonschlinkert)
- Alex Kocharin [github/rlidwka](https://github.com/rlidwka)
- Vitaly Puzrin [github/puzrin](https://github.com/puzrin)
License
-------
[MIT](https://github.com/jonschlinkert/remarkable/blob/master/LICENSE)