Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document how to import posts from Medium #3262

Merged
merged 2 commits into from
Jan 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions docs/importer.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ not be converted (as Pelican also supports Markdown).
manually, or use a plugin such as `More Categories`_ that enables multiple
categories per article.

.. note::

Imported pages may contain links to images that still point to the original site.
So you might want to download those images into your local content and manually
re-link them from the relevant pages of your site.

Dependencies
============

Expand Down Expand Up @@ -121,6 +127,15 @@ For WordPress::

$ pelican-import --wpfile -o ~/output ~/posts.xml

For Medium (an example of using an RSS feed):

$ python -m pip install feedparser
$ pelican-import --feed https://medium.com/feed/@username

.. note::

The RSS feed may only return the most recent posts — not all of them.

Tests
=====

Expand Down