Skip to content

Commit

Permalink
Fix 高元音莊組二等 of mid_tang
Browse files Browse the repository at this point in the history
  • Loading branch information
untunt committed Oct 4, 2022
1 parent f15373e commit bd7bc33
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions mid_tang.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,18 +139,18 @@ function get韻母() {
: { 韻核: 'a a a a', 韻尾: '' },
: { 韻核: 'ɑ ɑ ɑ ɑ', 韻尾: '' },

: { 韻核: 'ɨ ɨ ə ə', 韻尾: 'ŋ' },
: { 韻核: 'u u o o', 韻尾: 'ŋ' }, // 東冬
: { 韻核: 'ɨ ɨ ɨ ə', 韻尾: 'ŋ' },
: { 韻核: 'u u u o', 韻尾: 'ŋ' }, // 東冬
: { 韻核: 'o o o o', 韻尾: 'ŋ' }, // 鍾
: { 韻核: 'ɛ ɛ ɛ ɛ', 韻尾: 'ŋ' },
: { 韻核: 'œ œ œ œ', 韻尾: 'ŋ' },
: { 韻核: 'ɑ ɑ ɑ ɑ', 韻尾: 'ŋ' },

: { 韻核: 'i ɨ ə ə', 韻尾: 'w' },
: { 韻核: 'i ɨ ɨ ə', 韻尾: 'w' },
: { 韻核: 'ɛ ɛ a ʌ', 韻尾: 'w' },

: { 韻核: 'i ɨ ə ə', 韻尾: 'n' },
: { 韻核: 'i ɨ ə ə', 韻尾: 'm' },
: { 韻核: 'i ɨ ɨ ə', 韻尾: 'n' },
: { 韻核: 'i ɨ ɨ ə', 韻尾: 'm' },
: { 韻核: 'ɛ ɜ a ɑ', 韻尾: 'j' },
: { 韻核: 'ɛ ɜ a ɑ', 韻尾: 'n' },
: { 韻核: 'ɛ ɜ a ɑ', 韻尾: 'm' },
Expand Down Expand Up @@ -201,8 +201,8 @@ function get韻母() {
let 韻尾 = is`舒聲` ? 韻基.韻尾 : 選項.入聲韻尾.split(' ')['mnŋ'.indexOf(韻基.韻尾)];
if (開合 === '合' && !['ŋ', 'k'].includes(韻尾)) {
if ( === '四' && 韻尾) 韻核 = 韻核.replace('i', 'y');
韻核 = 韻核.replace('ɨ', 'ʉ');
if ( !== '二') 韻核 = 韻核.replace('ə', 'u');
韻核 = 韻核.replace('ə', 'u');
韻核 = 韻核.replace('ɨ', === '二' ? 'ə' : ');
韻核 = 韻核.replace('ɑ', is`蟹攝` ? 'ɔ' : 'ɒ');
};
if (介音 === 'ɨ' && 韻尾 === 'w') 韻核 = 韻核.replace('i', 'ɨ'); // 韻圖章組尤韻
Expand Down

0 comments on commit bd7bc33

Please sign in to comment.