### Describe the bug When using the gradle task "writeLibraryProperties", the : sign is escaped with an \ . So this ``` # List of authors. Links can be provided using the syntax [author name](url). authors=[Vincent Sijben](https://github.com/vincentsijben) # A web page for your Library, NOT a direct link to where to download it. url=https://vincentsijben.github.io/vjmotion-processing/ ``` ends up being this in library.properties ``` authors=[Vincent Sijben](https\://github.com/vincentsijben) url=https\://vincentsijben.github.io/vjmotion-processing/ ``` which in turn causes the link in the contribution manager to fail.