-
Hi, how do i hide C# language in the language card? I tried setting the parameter to :
|
Beta Was this translation helpful? Give feedback.
Answered by
qwerty541
Apr 26, 2023
Replies: 1 comment 1 reply
-
Try Language names should be URI-escaped, as specified in Percent Encoding (i.e: c++ should become |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
abhikatta
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Try
c%23
Language names should be URI-escaped, as specified in Percent Encoding (i.e: c++ should become
c%2B%2B
, jupyter notebook should becomejupyter%20notebook
, etc.) You can use urlencoder.org to help you do this automatically.