2024-07-27 Saturday
今日のあれこれ 雨雲レーダーに翻弄されて出かけそびれた。オリンピックの開会式観たり、録画番組観たり。 今日のでっち上げ chromebookで、なんでかeasy-hugo.elが動かない。M-x easy-hugo-newpostできないのは面倒なので、やっつけ仕事った。 # ruby easyHugoNew.rb # filename myfilename = "journal.org" # entryを置く場所 mypath = "~/blog/content/posts" # 時刻取得 time = Time.now # タイトル用日付 mytitle = time.strftime("%Y-%m-%d %A") # ISO8601拡張形式 JST 2024-07-28T22:00:00+09:00 mydate = time.strftime("%Y-%m-%dT%R:%S+09:00") # format time to slug myslug = time.strftime( "%Y%m%d%H%M" ) # path+filename mypost = "#{mypath}/#{myslug}.#{myfilename}" # fileを作る file = File.open(File.expand_path(mypost), "w") # front matter myheader = <<EOF ,#+title: #{mytitle} ,#+subtitle: hogemoge diary ,#+date: #{mydate} ,#+publishdate: #{mydate} ,#+lastmod: ,#+categories[]: journal ,#+draft: true ,#+tags[]: memo ,#+author: @tsut ,#+slug: #{myslug} EOF # front matter を書き込む file.puts myheader file.close どうでしょう? ...