Skip to content

📥 The "jekyll import" command for importing from various blogs to Jekyll format.

License

Notifications You must be signed in to change notification settings

jekyll/jekyll-import

Folders and files

NameName
Last commit message
Last commit date

Latest commit

fbb136c Â· Jan 21, 2025
Feb 19, 2024
Jan 21, 2025
Jul 17, 2024
Jan 21, 2025
Dec 3, 2022
Jan 21, 2025
Nov 4, 2019
Apr 13, 2020
Apr 13, 2020
Dec 24, 2020
Dec 7, 2022
Jan 21, 2025
Jan 3, 2018
Jan 17, 2024
Dec 19, 2022
Jan 21, 2025

Repository files navigation

jekyll-import

Gem Version Continuous Integration

The new Jekyll command for importing from various blogs to Jekyll format.

Note: migrators are now called importers and are only available if one installs the jekyll-import gem.

How jekyll-import works:

Jekyll v2.x and higher

  1. Install the rubygem with gem install jekyll-import.
  2. Run jekyll-import IMPORTER [options]

Jekyll v1.x

Launch IRB:

# 1. Require jekyll-import
irb> require 'jekyll-import'
# 2. Choose the importer you'd like to use.
irb> importer_class = "Behance" # an example, there are many others!
# 3. Run it!
irb> JekyllImport::Importers.const_get(importer_class).run(options_hash)

Documentation

jekyll-import has its own documentation site, found at https://import.jekyllrb.com. Dedicated documentation for each migrator is available there.