Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
The 'jekyll import' command for importing from various blogs to Jekyll format.
jekyll-import is a Ruby gem that adds an import command to Jekyll for migrating posts and content from various blogging platforms into Jekyll's static site format.
jekyll-import is the official import command for Jekyll, distributed as a Ruby gem. It takes content from external blogging platforms and converts it into Jekyll-compatible files, typically Markdown with front matter, ready for a Jekyll build. The tool runs inside a Ruby environment, and it is maintained under the Jekyll GitHub organization. Importers are no longer bundled with Jekyll core; they are only available when the jekyll-import gem is installed.
jekyll-import IMPORTER [options] from the shell after installing the gem.require 'jekyll-import' and call an importer class's run method with a hash of options.JekyllImport::Importers, selected by name.For Jekyll v2.x and later, installation is gem install jekyll-import followed by jekyll-import IMPORTER [options]. For Jekyll v1.x, open IRB, require 'jekyll-import', choose the importer class as a constant, and execute JekyllImport::Importers.const_get(importer_class).run(options_hash).
No. Importers (formerly called migrators) are only available if you install the jekyll-import gem separately.
Install it as a Ruby gem with gem install jekyll-import.
Jekyll v2.x and higher are supported through the jekyll-import command-line interface. For Jekyll v1.x, you must run importers from IRB.
The documentation site at https://import.jekyllrb.com includes dedicated documentation for each migrator.
