Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/botic/ringo-commonmark

A port of the CommonMark markdown parser.
https://github.com/botic/ringo-commonmark

Last synced: about 1 month ago
JSON representation

A port of the CommonMark markdown parser.

Awesome Lists containing this project

README

        

# ringo-commonmark

A port of the [CommonMark](http://commonmark.org/) markdown parser. The original source of the parser can be found at [jgm/commonmark.js](https://github.com/jgm/commonmark.js).

# Example

```
var md = require("commonmark");
md.process("# Headline\nTest\n\n* One\n* Two");
```

Result:
```

Headline


Test



  • One

  • Two


```