Line breaks in doc comments are causing unnecessary line breaks to be generated in the Swagger doc. A generic example:
/// <summary>
/// A line break will happen
/// here.
/// </summary>
This generates:
"description": "A line break will happen\nhere.",
We should find a way to prevent this from happening.