Go to file
David Tesler bcbde2801f add README.md 2017-04-28 17:40:40 -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 README.md 2017-04-28 17:40:40 -07:00
index.js first commit 2017-04-28 17:26:30 -07:00
package.json update package.json 2017-04-28 17:39:28 -07:00

README.md

Medium to markdown

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