Markdown to HTML Converter is a simple utility that lets you render your Markdown as HTML.
You can see all the functionality that Markdown To HTML Converter supports by playing around with its online demo.
npm install markdown-to-html-converter
import convertToHTML from 'markdown-to-html-converter'
const markdownStr = '# Example \nThis is my example text';
const htmlStr = convertToHTML(markdownStr);