1.0.3 • Published 6 years ago

markdown-previewer v1.0.3

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

markdown-previewer

Description

A simple, Super Lightweight markdown previewer. It receives a file and converts the markdown content to html.

Getting Started

yarn add markdown-previewer
const Preview = require('markdown-previewer')

const preview = new Preview // Creates new instance for Preview
const file = process.argv[2] // Name of the file to convert

const html = preview.htmlContent(file) // html content of markdown

console.log(html)