Go to file
David Tesler bbeca84a41 update npm version 2017-04-28 17:45:29 -07:00
lib first commit 2017-04-28 17:26:30 -07:00
.gitignore add .gitignore 2017-04-28 17:27:06 -07:00
LICENSE add license 2017-04-28 17:28:22 -07:00
README.md add shields to README 2017-04-28 17:44:38 -07:00
index.js first commit 2017-04-28 17:26:30 -07:00
package.json update npm version 2017-04-28 17:45:29 -07:00

README.md

Medium to markdown

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
});