File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -170,6 +170,11 @@ export async function processHanyu7(
170170 reading = r1 ;
171171 entryContents . splice ( 1 , 0 , `(${ r2 } )` ) ;
172172 }
173+ const youSplit = reading . split ( "又" ) ;
174+ if ( youSplit . length > 1 ) {
175+ reading = youSplit [ 0 ] ! ;
176+ entryContents . splice ( 1 , 0 , `(${ youSplit . slice ( 1 ) . join ( " " ) } )` ) ;
177+ }
173178 const definitionContentsForReading = {
174179 tag : "span" ,
175180 content : entryContents ,
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import { processHanyu7 } from "./dics/hanyu7/hanyu7.ts";
55
66const versions = {
77 guifan : "2025/12/17.2" ,
8- hanyu7 : "2025/12/17.2 " ,
8+ hanyu7 : "2025/12/20.1 " ,
99} ;
1010
1111const guifanPinyinDic = new Dictionary ( { fileName : "guifan-pinyin.zip" } ) ;
You can’t perform that action at this time.
0 commit comments