Typo
Additional Dependencies
This importer requires the following additional libraries.
You may install the needed gems individually by running gem install GEM_NAME
or install all of them
with a single invocation:gem install mysql2 pg safe_yaml sequel
To import your posts from Typo (now Publify), run:
$ ruby -r rubygems -e 'require "jekyll-import";
JekyllImport::Importers::Typo.run({
"server" => "mysql",
"dbname" => "name",
"user" => "myuser",
"password" => "mypassword",
"host" => "myhost"
})'
The only required fields are server
, dbname
, and user
. password
defaults to ""
and host
defaults to "localhost"
.
This code has only been tested with Typo version 4+.