优化空行输出
parent
3a33b78b15
commit
bc55309c1a
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "bash-calendar",
|
||||
"description": "终端版万年历",
|
||||
"version": "1.2.5",
|
||||
"version": "1.2.6",
|
||||
"author": "yutent <yutent.io@gmail.com>",
|
||||
"bin": {
|
||||
"calendar": "index.js",
|
||||
|
|
|
@ -231,7 +231,6 @@ function drawTbody(year, month) {
|
|||
console.log(tr)
|
||||
}
|
||||
}
|
||||
console.log('') // 再打印一个空行, 用于分隔多个日历
|
||||
}
|
||||
|
||||
// 渲染日历
|
||||
|
|
|
@ -19,6 +19,9 @@ var [year, month] = getThisYearMonth()
|
|||
function drawOneYear(y) {
|
||||
for (let i = 0; i < 12; i++) {
|
||||
drawCalendar(y, i)
|
||||
if (i < 11) {
|
||||
console.log('') // 再打印一个空行, 用于分隔多个日历
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue