// EmEditor用のマクロです。
// W3C-DTF形式（YYYY-MM-DDThh:mm:ssTZD）の日付を挿入します。
// タイムゾーンは常にUTCです。
now = new Date();

year = now.getUTCFullYear();

month = now.getUTCMonth()+1;
if (month < 10) {
	month = "0" + month;
}

day = now.getUTCDate();
if (day < 10) {
	day = "0" + day;
}

hour = now.getUTCHours();
if (hour < 10) {
	hour = "0" + hour;
}

minute = now.getUTCMinutes();
if (minute < 10) {
	minute = "0" + minute;
}

second = now.getUTCSeconds();
if (second < 10) {
	second = "0" + second;
}

document.selection.Text  =  year + "-" + month + "-" + day + "T" + hour + ":" + minute + ":" + second + "Z";
