Skip to content

Commit

Permalink
Updated READMEs
Browse files Browse the repository at this point in the history
  • Loading branch information
andreihar committed May 20, 2024
1 parent 8590a98 commit bf60998
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "taibun",
"version": "1.0.2",
"version": "1.0.3",
"description": "Taiwanese Hokkien Transliterator and Tokeniser",
"main": "taibun/index.js",
"types": "taibun/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion readme/README-cmn.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ c.get(input);

變調規則也會根據所選擇的方言而變化。

| 文本 | 沒有變速 | south | north |
| 文本 | 沒有變調 | south | north |
| ---- | -------- | ------- | ------- |
| 台灣 | Tâi-uân | Tāi-uân | Tài-uân |

Expand Down
2 changes: 1 addition & 1 deletion readme/README-oan.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ c.get(input);

變調規則也會隨著選的方言而有所改變。

| 文本 | 無變速 | south | north |
| 文本 | 無變調 | south | north |
| ---- | ------- | ------- | ------- |
| 台灣 | Tâi-uân | Tāi-uân | Tài-uân |

Expand Down
2 changes: 1 addition & 1 deletion taibun/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ if (typeof window === 'undefined') {
}

for (let [k, v] of Object.entries(tradDict)) {
if (k.length === 1) {
if (k.length === 1 && !simpDict[v]) {
simpDict[v] = k;
}
}
Expand Down

0 comments on commit bf60998

Please sign in to comment.