Markdown-it is a javascript library/package which converts markdown text to HTML. Its very fast, efficient & easy to use within your project
Markdown is a light weight markup language with plain text formatting syntax. Its design allows to be converted to many output formats. Markdown is often used to format readme files, for writing messages in online discussion forums, and to create rich text using a plain text editor.
Markdown-it is a javascript library/package which converts markdown text to HTML. Its very fast, efficient & easy to use within your project.
You can use either npm or bower or CDN:
npm install markdown-it --save
bower install markdown-it --save
// node.js, "classic" way:
var MarkdownIt = require('markdown-it'),
md = new MarkdownIt()
var result = md.render('# markdown-it rulezz!')
// node.js, the same, but with sugar:
var md = require('markdown-it')()
var result = md.render('# markdown-it rulezz!')
// browser without AMD, added to "window" on script load
// Note, there is no dash in "markdownit".
var md = window.markdownit()
var result = md.render('# markdown-it rulezz!')
Here is the complete API documentation & many examples.
As a developer, I always see the problem for creating images/banners whenever I post some content online.
Even for simple designs I always needed to open figma or search online, so I thought of automating it.
I've build BannerPot to solve this problem, would you like to give it a try?
Ramesh Mhetre
Maker of BannerPot