0.1.1 • Published 1 month ago

markeasy v0.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

markeasy

Transform markdown content into HTML content easily.

Overview

Your markdown content easily transformed into HTML content.

Features

  • transform raw markdown content into HTML.

Installation

This package is ESM only. Install with npm:

npm install markeasy

Usage

import { buildHtml} from 'markeasy'

const result = buildHtml('# markeasy')

console.log(result.html)
// <h1>markeasy</h1>