Skip to content

Instantly share code, notes, and snippets.

@thefourtheye
thefourtheye / import.rb
Last active November 12, 2016 14:26 — forked from dnagir/import.rb
Import a blogger archive to jekyll (allows tags)
require 'rubygems'
require 'nokogiri'
require 'fileutils'
require 'date'
require 'uri'
# usage: ruby import.rb my-blog.xml
# my-blog.xml is a file from Settings -> Basic -> Export in blogger.
data = File.read ARGV[0]