We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Specifying a font like Franklin Gothic Book in a chart causes the chart to not generate.
Franklin Gothic Book
The issue is in .hc_get_fonts at line 133 of theme.R. Instead of
.hc_get_fonts
str_replace("\\s+", "+") %>%
it should be
str_replace_all("\\s+", "+") %>%
otherwise only the first space in the font name is converted to a +
+
The text was updated successfully, but these errors were encountered:
2b1e796
Thanks so much for found these bugs!
Sorry, something went wrong.
No branches or pull requests
Specifying a font like
Franklin Gothic Book
in a chart causes the chart to not generate.The issue is in
.hc_get_fonts
at line 133 of theme.R. Instead ofit should be
otherwise only the first space in the font name is converted to a
+
The text was updated successfully, but these errors were encountered: