Skip to content

asmsuechan/minute

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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!