Admin message

Due to a large amount of spam we do not allow new users to create repositories, they are "external" users. If you are a new user and want to create a repository, for example for forking GHC, open a new issue on ghc/ghc using the "get-verified" issue template

GHCs json profiling output is not escaped correctly.
## Summary Quoting from [stack overflow](https://stackoverflow.com/questions/3020094/how-should-i-escape-strings-in-json) ``` JSON is pretty liberal: The only characters you must escape are \, ", and control codes (anything less than U+0020). ``` But GHC produces strings like: ``` "arguments": ["E:\ghc_inferTags\_prof\stage1\bin\ghc.exe", "-O", "-fforce-recomp", "Distribution/Compat/Lens.hs"], ``` ## Steps to reproduce Use +RTS -pj on a profiling enabled program. ## Expected behavior The json should be properly escaped.
issue