Skip to content

Commit baecff3

Browse files
committed
(hanyu7) better alt readings handling
1 parent b08dc1c commit baecff3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dics/hanyu7/hanyu7.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ export async function processHanyu7(
173173
const youSplit = reading.split("又");
174174
if (youSplit.length > 1) {
175175
reading = youSplit[0]!;
176-
entryContents.splice(1, 0, `(${youSplit.slice(1).join(" ")})`);
176+
entryContents.splice(1, 0, `(${youSplit.slice(1).join("")})`);
177177
}
178178
const definitionContentsForReading = {
179179
tag: "span",

export.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { processHanyu7 } from "./dics/hanyu7/hanyu7.ts";
55

66
const versions = {
77
guifan: "2025/12/17.2",
8-
hanyu7: "2025/12/20.1",
8+
hanyu7: "2025/12/20.2",
99
};
1010

1111
const guifanPinyinDic = new Dictionary({ fileName: "guifan-pinyin.zip" });

0 commit comments

Comments
 (0)