* [GithubTrendingBridge] Fix bridge: not all languages worked
Languages with more than one word (like "Common Lisp") were not working. Looks like GitHub changed the parameter format: white space is encoded with dashes.
This prompted me to update all languages while I was at it. This also fixed the bug that the C# & F# languages were not working, because the # has to be URL encoded, which is now done in the parameter value. The language "Ren'Py" was commented out. Probably because the single quote was not escaped? I also fixed that.
* [GithubTrendingBridge] Fix PHP notice.
A repo owner can leave the repo description empty, which means the HTML element isn't there. In this case the code produced a PHP notice. This is fixed by checking for null.
* Changed getName() to retrieve the language name directly from the PARAMETERS.
Co-authored-by: dag <me@dvikan.no>