最近全然更新できてなかったこのブログを、いまさらながら Octopress から Hugo に移行した。
マイグレーションスクリプトを使えば割と簡単だったけれど、一部対応が必要だったのでメモ。
マイグレーションスクリプトの微修正
公式ドキュメントにて紹介されている octohug を使うと記事を一括で変換してくれるけど、元のタイトルを変えてしまうのが都合悪かったので修正したものを使った。
https://github.com/zoncoen/octohug
Octopress オリジナルのタグの置き換え
img tag
$ find ./content/posts -type f -exec sed -i "" -e 's/{%.*img.*\/images\/\([^ ]*\) .*%}/<img src=\"\/images\/\1\" class=\"image\">/g' {} \;
oembed tag
$ find ./content/posts -type f -exec sed -i "" -e 's/{%.*oembed.*https:\/\/twitter.com\/.*\/status\/\(.*\) .*%}/{{< tweet \1 >}}/g' {} \;
リダイレクト設定
$ find ./content/posts/old -type f -exec sed -i "" -e 's/slug = \"\(.*\)\"/aliases = \[\"blog\/\1\"\]/g' {} \;
markdown code blocks の Hugo shortcodes への置き換え
$ find ./content/posts -type f -exec sed -i "" -e 's/^```$/{{< \/highlight >}}/g' {} \;
$ find ./content/posts -type f -exec sed -i "" -e 's/^``` *\([a-zA-Z]*\)\(.*\)/{{< highlight \1 >}}/g' {} \;
以上でだいたい終わり。簡単だった。