0.3.2 • Published 2 years ago

@mryhryki/markdown v0.3.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

js-markdown

npm version

Convert markdown to HTML library for personal use.

How to use

const { convert } = require('@mryhryki/markdown')

const markdown = `
# TITLE
description
`.trim()

const { title, html } = convert(markdown)
console.log(title) // => TITLE
console.log(html)  // => <h1>TITLE</h1>\n<p>description</p>
0.3.2

2 years ago

0.4.0

2 years ago

0.3.1

3 years ago

0.3.0

3 years ago

0.2.1

3 years ago

0.2.0

3 years ago

0.2.3

3 years ago

0.2.2

3 years ago

0.1.2

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago