An open API service indexing awesome lists of open source software.

https://github.com/pseitz/chinese_top_1000_words


https://github.com/pseitz/chinese_top_1000_words

Last synced: 10 months ago
JSON representation

Awesome Lists containing this project

README

          

Top 1000 Chinese Words in Traditional Chinese that are used in Taiwan.

Thanks to K. J. Chen and the CKIP Group of the Academia Sinica for the list.

Extracted from https://en.wiktionary.org/wiki/Appendix:Mandarin_Frequency_lists/1-1000

```javascript
var terms = [];
$('.Hant').each(function(){
terms.push($(this).text());
});
var lineSeparatedString = terms.join('\n');
console.log(lineSeparatedString);
```