At the moment the following code will collapse everything into one line. It makes the description harder to read once rendered in Swagger UI, and prevent using Markdown syntax to format things like lists.
* @rest\description Useful endpoint that does 2 things:
* - this
* - and that
Actual result:
"description":"Useful endpoint that does 2 things: - this - and that"
Expected result:
"description":"Useful endpoint that does 2 things:\n - this\n - and that"
Is there any way to preserve the end of line?
At the moment the following code will collapse everything into one line. It makes the description harder to read once rendered in Swagger UI, and prevent using Markdown syntax to format things like lists.
Actual result:
Expected result:
Is there any way to preserve the end of line?