Closed jchavarri closed 6 years ago
There seems to be a few challenges with font families:
font-family
[%style {typed| font-family: Helvetica; |typed} ]
fails to compile, as Helvetica gets compiled as is, but it is not defined.
Helvetica
[%style {typed| font-family: Helvetica Neue; |typed} ]
Gets interpreted as two values right now, and fails as "fontFamily2 can't be found".
fontFamily2
[%style {typed| font-family: Helvetica, Arial; |typed} ]
fails with "Unsupported delimiter".
Should be fixed in branch issue7. If you can confirm, I will merge it to master. Thanks!
Woah that was fast ⚡️ It works great! 👍
There seems to be a few challenges with font families:
font-family
values don't have quotes around them, so:fails to compile, as
Helvetica
gets compiled as is, but it is not defined.Gets interpreted as two values right now, and fails as "
fontFamily2
can't be found".fails with "Unsupported delimiter".