All Projects → dtesler → medium-to-markdown

dtesler / medium-to-markdown

Licence: MIT license
Converts Medium posts to markdown.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to medium-to-markdown

dressup
Dress up your unicode!
Stars: ✭ 22 (-67.65%)
Mutual labels:  converter
mcp3008.js
A node.js module for querying an mcp3008 analog/digital converter.
Stars: ✭ 24 (-64.71%)
Mutual labels:  converter
CodeProject
Common code for unity project develop.
Stars: ✭ 28 (-58.82%)
Mutual labels:  converter
symreader-converter
Converts between Windows PDB and Portable PDB formats.
Stars: ✭ 50 (-26.47%)
Mutual labels:  converter
medium
Usando a api do medium pra ler artigos e exibir o html
Stars: ✭ 33 (-51.47%)
Mutual labels:  medium
Excel2LaTeX
The Excel add-in for creating LaTeX tables
Stars: ✭ 914 (+1244.12%)
Mutual labels:  converter
eve
👻 everyday explore, Github / HackNews / V2EX / Medium / Product Hunt.
Stars: ✭ 13 (-80.88%)
Mutual labels:  medium
Rates
A currency rate converter App.
Stars: ✭ 13 (-80.88%)
Mutual labels:  converter
godmt
Tool that can parse Go files into an abstract syntax tree and translate it to several programming languages.
Stars: ✭ 42 (-38.24%)
Mutual labels:  converter
indices
Indices creates a Table of Contents sidebar for Medium articles, and enables you to skip around
Stars: ✭ 16 (-76.47%)
Mutual labels:  medium
laravel-medium-sdk
Laravel Service Provider for Medium's SDK for PHP.
Stars: ✭ 20 (-70.59%)
Mutual labels:  medium
bafi
Universal JSON, BSON, YAML, CSV, XML converter with templates
Stars: ✭ 65 (-4.41%)
Mutual labels:  converter
Articles-Bookmarked
No description or website provided.
Stars: ✭ 30 (-55.88%)
Mutual labels:  medium
medium-code
A place to store my jupyter notebooks for my medium articles
Stars: ✭ 27 (-60.29%)
Mutual labels:  medium
romans
A Simple PHP Roman Numerals Library
Stars: ✭ 40 (-41.18%)
Mutual labels:  converter
wikitable2csv
A web tool to convert Wiki tables to CSV 📈
Stars: ✭ 112 (+64.71%)
Mutual labels:  converter
schema2ldif
Schema 2 ldif : tool to convert .schema to .ldif files and mange them live into an openldap server
Stars: ✭ 14 (-79.41%)
Mutual labels:  converter
gluon2pytorch
Gluon to PyTorch deep neural network model converter
Stars: ✭ 72 (+5.88%)
Mutual labels:  converter
static-medium-isr-in-nuxtjs-with-layer0
Demo showing off ISR in Nuxt.js with Layer0
Stars: ✭ 36 (-47.06%)
Mutual labels:  medium
CTR-tools
Crash Team Racing (PS1) tools - a C# framework by DCxDemo and a set of tools to parse files found in the original kart racing game by Naughty Dog.
Stars: ✭ 93 (+36.76%)
Mutual labels:  converter

Medium to markdown

npm npm

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

Command Line Usage

Setup:

  1. Install npm if not already installed
  2. Clone the repo
  3. run npm install inside the repo

Outputting to command line:

npm run convert https://medium.com/@almenon214/keeping-yourself-motivated-as-a-coder-a16a6fcf49c7

Replace the link with the article you want to convert.

Outputting to file:

npm run convert https://medium.com/@almenon214/keeping-yourself-motivated-as-a-coder-a16a6fcf49c7 > exampleOutput.md

Replace the link with the article you want to convert.

What does the output look like?

See examples/exampleOutput.md for an example of what https://medium.com/@almenon214/keeping-yourself-motivated-as-a-coder-a16a6fcf49c7 looks like when converted to markdown.

API 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
});
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].