0.0.4 • Published 5 years ago

medium-to-markdown-enhanced v0.0.4

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

Medium to markdown

npm npm

This module lets you take a medium post and convert it to markdown.

Usage

Currently, the module supports getting the markdown from a medium post by URL.

const mediumToMarkdown = require('medium-to-markdown');

mediumToMarkdown.convertFromUrl('<medium post url>')
.then(function (markdown) {
  console.log(markdown); //=> Markdown content of medium post
});