修复节日是3个字以上的高亮
parent
d7ff4db1d3
commit
07a4743895
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "bash-calendar",
|
"name": "bash-calendar",
|
||||||
"description": "终端版万年历",
|
"description": "终端版万年历",
|
||||||
"version": "1.2.1",
|
"version": "1.2.2",
|
||||||
"author": "yutent <yutent.io@gmail.com>",
|
"author": "yutent <yutent.io@gmail.com>",
|
||||||
"bin": {
|
"bin": {
|
||||||
"calendar": "index.js",
|
"calendar": "index.js",
|
||||||
|
|
|
@ -189,15 +189,18 @@ function drawTbody(year, month) {
|
||||||
|
|
||||||
case 2:
|
case 2:
|
||||||
let pad = 5
|
let pad = 5
|
||||||
|
let space = ''
|
||||||
|
let padSpace = ' '
|
||||||
if (tmp.lunar) {
|
if (tmp.lunar) {
|
||||||
pad = (10 - tmp.lunar.length * 2) / 2 - 2
|
pad = (10 - tmp.lunar.length * 2) / 2 - 2
|
||||||
}
|
}
|
||||||
|
if (pad > 0) {
|
||||||
|
space = ' '.repeat(pad)
|
||||||
|
} else {
|
||||||
|
padSpace = padSpace.slice(0, pad)
|
||||||
|
}
|
||||||
if (tmp.picked) {
|
if (tmp.picked) {
|
||||||
tr +=
|
tr += padSpace + chalk.bgBlue.white.bold(space + tmp.lunar + space) + padSpace + VLINE
|
||||||
' ' +
|
|
||||||
chalk.bgBlue.white.bold(' '.repeat(pad) + tmp.lunar + ' '.repeat(pad)) +
|
|
||||||
' ' +
|
|
||||||
VLINE
|
|
||||||
} else {
|
} else {
|
||||||
if (tmp.lunar) {
|
if (tmp.lunar) {
|
||||||
tmp.lunar = tmp.highlight
|
tmp.lunar = tmp.highlight
|
||||||
|
|
Loading…
Reference in New Issue