0.2.0 • Published 7 years ago

markthat v0.2.0

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

Markthat

A module that parses markdown into html

Build Status

Installation:

npm install markthat

Usage:

Single line:

const markthat = require('markthat');

markthat.markthat('**Bold**');

//returns as: <strong>Bold</strong>

Whole file:

const markthat = require('markthat');

markthat.markthatFile('./README.md').then(thefile => {
    console.log(thefile); //thefile is the parsed markdown
    //do whatever you want with the parsed markdown
});
0.2.0

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago