Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/botic/ringo-commonmark
- Owner: botic
- License: other
- Created: 2014-10-29T13:15:02.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2017-08-18T08:29:12.000Z (over 7 years ago)
- Last Synced: 2023-03-11T07:58:35.663Z (over 1 year ago)
- Language: JavaScript
- Size: 146 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```