typefaces
typefaces copied to clipboard
Noto Sans TC implementation is not correct
import 'typeface-noto-sans-tc'
compared with direct using
<link href="https://fonts.googleapis.com/css?family=Noto+Sans+TC:100,300,400,500,700,900" rel="stylesheet"/>
The traditional chinese characters didn't work as expected.
Example string: MacOS 用 RAM 用得好進取,所以愈多 RAM 愈好!
Using https://fonts.googleapis.com/css?family=Noto+Sans+TC:100,300,400,500,700,900
fontWeight: 900
fontWeight: 300
Using import 'typeface-noto-sans-tc'
fontWeight: 900
fontWeight: 300
I looked through the source code. The Noto CJK packages are implemented in a way that only works for Latin characters set. It means that these packages won't work for the corresponding JP/KR/SC/TC character set.
This should be fixed by adding the japanese/ korean/ traditonal-chinese/ simplified-chinese files to the packages and changing the CSS.
@NekoApocalypse seems like the author have some scripts to auto generate a package. But I cannot find it and then help in.