Go to file
David Tesler cd3dd4f180
Merge pull request #3 from WillKoehrsen/master
Fixed tag referring to article
2019-12-15 18:20:03 -08:00
lib Fixed tag referring to article 2019-07-30 08:53:29 -04: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 avoid null in toMarkdown 2017-05-06 21:33:10 -07:00
index.js first commit 2017-04-28 17:26:30 -07:00
package.json bump npm version 2017-05-06 21:33:36 -07:00

README.md

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