A CLI tool which converts medium posts (html) into Jekyll/Hugo compatible markdown files. Also downloads images and adds yaml front matter to the converted markdown files. It works with exported Medium posts (local html files) and converts all exported posts to markdown using a single command. It could be useful in scenarios when you want to migrate your blog away from Medium to Jekyll or Hugo (or something similar, which supports markdown content).
- Export and extract your Medium posts from your Medium account.
- Go to
https://medium.com/me/settings
and scroll toDownload your information
. Click the download button. This will give you amedium-export.zip
archive containing all your Medium content. - Extract the .zip archive downloaded in the previous step. It will have a sub-directory called
posts
. - Copy the path of this
posts
directory.
- Go to
- Install
node.js
andmedium-2-md
on your system.- Download and Install node.js - https://nodejs.org/en/download/.
- Install medium-2-md -
npm i -g medium-2-md
.
- Run the following command to convert all your Medium posts (html) to markdown files,
medium-2-md convertLocal '<path of the posts directory>' -dfi
That's it. The output markdown files will be stored in a sub-directory called md_<a big number>
in the input posts directory itself. (By the way, that big number is coming from the Date.now() JavaScript function, added to differentiate multiple output folders.)
The converted markdown files include front matter containing title, description, published date and canonical URL of the original Medium post/story. The images from the Medium posts are downloaded in a sub-directory called img
inside the output directory.
The convertLocal
command supports the following optional flags,
-d
or--drafts
: Convert the drafts too.-f
or--frontMatter
: Add the front matter on top of the markdown file.-i
or--images
: Download images to a localimg
sub-directory.
medium-2-md convertLocal E:\\path\\to\\posts\\dir -d
medium-2-md convertLocal E:\\path\\to\\posts\\dir -i
Note: The flags do not support any defaults. You need to add them in order to get the respective results (drafts, images and/or front matter inclusion).
When using the -i
or --images
flag, the images are downloaded into a sub-directory called img
inside the output directory. If this img
directory does not already exist, it is created. If it already exists, the downloaded images are saved inside the existing directory. The image elements in the converted markdown files link to their respective local paths from the img
sub-directory.
This package uses:
- turndown - to convert html into markdown.
- cheerio - to select and extract relevant html attributes from Medium posts' html files.
- commander - to enable command line interface.
- js-yaml - to add yaml front matter to markdown files.
- node-fetch - to download images.