graphicore / specimenTools

Apache License 2.0
29 stars 5 forks source link

Css family name truncated to single word without spaces #34

Open kontur opened 6 years ago

kontur commented 6 years ago

I found that under certain circumstances a css family name with several spaces (and possibly because of keywords like Regular in that extensive family name) in the name would fail to render. Truncating such a long family name that includes spaces into a single word solves this problem with the only "drawback" being that the display css font-family will be truncated, i.e. instead of font-family: Very long name font regular; it would show as font-family: Verylongnamefontregular; in the browser inspector.

I expanded the current _getCSSFamilyName pass through to perform this modification.