This package has been deprecated

Author message:

All changes merged into md-2-json on July 16, 2019

better-md-2-json

1.0.6 • Public • Published

MARKDOWN-TO-JSON

A simple library to convert markdown content to JSON object.

Usage

Simple content

 
var md2json = require('md-2-json');
 
md2json.parse('This is a markdown content');
 
/* output
{
    raw: "This is a markdown content\n"
}
*/
 

Multiline Content

 
var md2json = require('md-2-json');
var mdContent = `
# Heading 1
 
This is a para
 
- This is a list
 
## Heading 2
 
This is a para
`
 
md2json.parse(mdContent);
 
/* output
{
    "Heading 1": {
        raw: "This is a para\n - This is a list\n",
        "Heading 2": {
            raw: "This is a para\n"
        }
    }
}
*/
 

Converting JSON to MD string

The method toMd can be used to convert the JSON Object to Markdown string.

 
var md2json = require('md-2-json');
var json = {
    "Heading 1": {
        raw: "This is a para\n",
    }
}
 
md2json.toMd(json);
 
/* output
`
# Heading 1
 
This is a para
 
`
*/
 

Package Sidebar

Install

npm i better-md-2-json

Weekly Downloads

6

Version

1.0.6

License

MIT

Unpacked Size

7.48 kB

Total Files

3

Last publish

Collaborators

  • williamnharvey