Skip to content

Instantly share code, notes, and snippets.

@WillKoehrsen
Created September 16, 2018 16:12
Show Gist options
  • Save WillKoehrsen/f685c3aa4b0d4d9220d59404803bffa4 to your computer and use it in GitHub Desktop.
Save WillKoehrsen/f685c3aa4b0d4d9220d59404803bffa4 to your computer and use it in GitHub Desktop.
const mediumToMarkdown = require('medium-to-markdown');
// Enter url here
mediumToMarkdown.convertFromUrl('<medium post url>')
.then(function (markdown) {
console.log(markdown); //=> Markdown content of medium post
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment