2024年6月26日

Jekyllを試す。まずはJekyllをインストール。

gem install jekyll
mkdir jekyll_test 
cd jekyll_test
bundle init

GemfileにJekyllを追加。

bundle config set path 'vendor/bundle'
bundle install
bundle exec jekyll s
bundle exec jekyll new . --force
bundle install

駄目だ。よくわからん。もっと簡単なやつが欲しい。

hugoを試す。

brew install hugo
hugo new site hugo_test
cd hugo_test
git init
git submodule add https://github.com/theNewDynamic/gohugo-theme-ananke.git themes/ananke
echo "theme = 'ananke'" >> hugo.toml
hugo server

できた。

んー、でもよくわかんないや。もう面倒だからPandocで行く。すまん。

結局Markdown+Pandocで書いた。うーむむ。