t_wの輪郭

生成振り返り
あれt_wの輪郭から振り返り用のHTMLを取得するスニペット

あれ

2025/3/25 13:07:00

AIに振り返りを生成させる意味があるかというと、「過去に何やってたか要約されて楽に把握できてうれしい」ぐらいの意味がある

$$("article")
	.map(e=>e.innerHTML)
	.map(html=>html.replaceAll(/style=\"[^\"]*\"/g, ""))
	.map(html=>html.replaceAll('<button type="button" class="mxmz icn_ btn_mxmz"></button>', ""))
  .map(html=>html.replace('<div class="shdw btm">', ""))
  .map(html=>html.replace('<div class="shdw top"> </div>', ""))
  .slice(0,50)
	.join("\n")