Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 387 Bytes

README.md

File metadata and controls

21 lines (17 loc) · 387 Bytes

minute

minute is a tiny markdown parser.

Installation

npm install minutemd
or
yarn add minutemd

Usage

import { convertToHTMLString } from 'minutemd'

const md = '# heading1';
convertToHTMLString(md)
// This outputs '<h1>heading1</h1>'

Playground

Playground is available for minute. Try this out!