diff --git a/src/web/utils/parseAnno.ts b/src/web/utils/parseAnno.ts index 4f3ad9de..9bcd30af 100644 --- a/src/web/utils/parseAnno.ts +++ b/src/web/utils/parseAnno.ts @@ -2,14 +2,14 @@ * @file web utils parseAnno.ts * @description 解析游戏内公告数据 * @author BTMuli - * @since Alpha v0.1.2 + * @since Alpha v0.1.5 */ import { decodeRegExp } from "./tools"; /** * @description 解析游戏内公告数据 - * @since Alpha v0.1.2 + * @since Alpha v0.1.5 * @param {string} data 游戏内公告数据 * @returns {string} 解析后的数据 */ @@ -57,5 +57,8 @@ export function parseAnnoContent (data: string): string { a.target = "_blank"; } }); + htmlBase.querySelectorAll("table").forEach((table) => { + table.style.borderColor = "#546d8b"; + }); return htmlBase.body.innerHTML; }