I recently updated an application running springfox-swagger2 and springfox-swagger-ui 2.5.0 to use version 2.6.0. The application's API documentation uses <li>, <b> and <br> tags, which were rendered correctly with 2.5.0, but with version 2.6.0 the <li> and <br> tags are ignored by the swagger-ui.
What do I have to do to make springfox render the HTML tags again?
The tags are used at the following positions:
ApiInfoBuilder().description("HERE")
@ApiOperation(notes="HERE")
@ApiResponse(message="HERE")

<h3>and<h2>tags - naXa