Skip to content

Commit 7ff6930

Browse files
committed
properly removed spaces in zhuyin
1 parent 4a63516 commit 7ff6930

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

dics/guifan/guifan.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ export async function processGuifan(
151151
content: definitionContentsForReading,
152152
});
153153
const zhuyinTermEntry = new TermEntry(term.headword)
154-
.setReading(p2z(reading.replaceAll(" ", "")))
154+
.setReading(p2z(reading).replaceAll(" ", ""))
155155
.addDetailedDefinition({
156156
type: "structured-content",
157157
content: definitionContentsForReading,

export.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import { processGuifan } from "./dics/guifan/guifan.ts";
44
import { processHanyu7 } from "./dics/hanyu7/hanyu7.ts";
55

66
const versions = {
7-
guifan: "2025/12/30.2",
8-
hanyu7: "2025/12/30.2",
7+
guifan: "2025/12/30.3",
8+
hanyu7: "2025/12/30.3",
99
};
1010

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

0 commit comments

Comments
 (0)