tommy
https://gyazo.com/358fc2b1509da71a96d7805e77d8aa1b
自己紹介
連絡先
メールアドレス: tommyt6073 at gmail.com
きまべんへの招待希望もこちらにお送りください
個人サイト
code:script.js
// みんなで書き込む用のページをつくるスクリプト
scrapbox.PageMenu.addItem({
title: '今日のもくもくページ作成',
onClick: () => {
const project = "kimaben";
const userName = "tommy";
const toDoubleDigits = function(num) {
num += "";
if (num.length === 1) {
num = "0" + num;
}
return num;
};
const date = new Date();
const yyyy = date.getFullYear();
const mm = toDoubleDigits(date.getMonth() + 1);
const dd = toDoubleDigits(date.getDate());
const hh = toDoubleDigits(date.getHours());
const MM = toDoubleDigits(date.getMinutes());
const content = "やること宣言%0A" +
[${userName}.icon]%0A%20%0A%0A +
"勉強中メモ%0A" +
[${userName}.icon]%0A%20%0A%0A +
"やったこと%0A" +
[${userName}.icon]%0A%20%0A%0A +
"+ yyyy + "-" + mm + "-" + dd + " "+ "日報"; const title = yyyy + "-" + mm + "-" + dd;
}
})