Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/noyobo/md2jsonml
Parse Markdown into JsonML.
https://github.com/noyobo/md2jsonml
jsonml markdown-parser
Last synced: 2 months ago
JSON representation
Parse Markdown into JsonML.
- Host: GitHub
- URL: https://github.com/noyobo/md2jsonml
- Owner: noyobo
- Created: 2017-03-22T03:09:00.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2020-06-01T01:22:44.000Z (over 4 years ago)
- Last Synced: 2024-10-14T03:18:10.926Z (3 months ago)
- Topics: jsonml, markdown-parser
- Language: JavaScript
- Size: 560 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Markdown to JsonML
=================[![Greenkeeper badge](https://badges.greenkeeper.io/noyobo/md2jsonml.svg)](https://greenkeeper.io/)
[![](https://img.shields.io/travis/noyobo/md2jsonml.svg)](https://travis-ci.org/noyobo/md2jsonml) [![Codecov](https://img.shields.io/codecov/c/github/noyobo/md2jsonml/master.svg)](https://codecov.io/gh/noyobo/md2jsonml/branch/master) [![npm package](https://img.shields.io/npm/v/md2jsonml.svg)](https://www.npmjs.org/package/md2jsonml) [![NPM downloads](http://img.shields.io/npm/dm/md2jsonml.svg)](https://npmjs.org/package/md2jsonml)
Parse markdown to [JsonML](http://www.jsonml.org/), work on NodeJS and Browser.
## Features
- Support HTML tags
- Support reference## Installation
```bash
npm install md2jsonml
```## Usage
```js
const md2jsonml = require('md2jsonml');const jsonml = md2jsonml('## Markdown content')
```## Examples
see [test](./test)