0.2.0 • Published 6 years ago

markthat v0.2.0

Weekly downloads
2
License
MIT
Repository
github
Last release
6 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

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago

0.0.5

7 years ago

0.0.4

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago