-
Beta Was this translation helpful? Give feedback.
Answered by
rickstaa
Aug 16, 2022
Replies: 1 comment 2 replies
-
@galexbh Thanks for your bug report. I checked the cards, and I can not reproduce the following syntax: With custom_title [](https://github.com/anuraghazra/github-readme-stats) Without custom_title [](https://github.com/anuraghazra/github-readme-stats) I think your problem is you use spaces in a URL which is not allowed. You should use percent-encoding for special characters (see https://en.wikipedia.org/wiki/Percent-encoding). You can use [this stack question](https://stackoverflow.com/questions/7109143/what-characters-are-valid-in-a-url to check which characters can be used without percent-encoding. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
galexbh
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@galexbh Thanks for your bug report. I checked the cards, and I can not reproduce the following syntax:
With custom_title
Without custom_title
I think your problem is you use spaces in a URL which is not allowed. You should use percent-encoding for special characters (see https://en.wikipedia.org/wiki/Percent-encoding). You can use [this stack question](