このブログは、旧・はてなダイアリー「檜山正幸のキマイラ飼育記 メモ編」(http://d.hatena.ne.jp/m-hiyama-memo/)のデータを移行・保存したものであり、今後(2019年1月以降)更新の予定はありません。

今後の更新は、新しいブログ http://m-hiyama-memo.hatenablog.com/ で行います。

jekyllのPygments

python2ディレクトリがないというので、無理矢理にpythonにした。ヒドイ解決だ。

    # Detect a suitable Python binary to use. We can't just use `python2`
    # because apparently some old versions of Debian only have `python` or
    # something like that.
    def python_binary
      @python_binary ||= begin
        `which python2`
        $?.success? ? "python" : "python" # python2 --> python by Hiyama
      end
    end