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

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

c787691 Â· Dec 11, 2022
Dec 2, 2022
Dec 11, 2022
Dec 11, 2022
Dec 3, 2022
Dec 10, 2022
Nov 4, 2019
Apr 13, 2020
Apr 13, 2020
Dec 24, 2020
Dec 7, 2022
Dec 10, 2022
Jan 3, 2018
Jan 7, 2018
Dec 4, 2022
Dec 3, 2022

Repository files navigation

jekyll-import

Build Status

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.