github.io 만들기 04 - gitpages with jekyll 로 wordpress데이터 이관

1. 워드프레스 데이터 백업
워드프레스 관리자모드 - 도구 - 내보내기

2. 지킬에 임포트 플러그인 설치
gem install jekyll-import

3. 지킬에 임포트
$ ruby -r rubygems -e 'require "jekyll-import";
JekyllImport::Importers::WordpressDotCom.run({
"source" => "wordpress.xml",
"no_fetch_images" => false,
"assets_folder" => "assets"
})’

https://import.jekyllrb.com/docs/wordpressdotcom/

정상적으로 수행되었다면 _posts 폴더 밑에 .html 파일이 쭉 떨어진다.
끝!