| I see, you are looking for an newbie issue that you can fix? Currently some parsers create multiline messages and descriptions (in plain text using newlines as separator). If these messages are shown in the UI, then the newlines are simply ignored since they have no meaning in HTML. So the fix would be to detect the newlines and show the information in a better way. Example: Set a breakpoint in https://github.com/jenkinsci/warnings-ng-plugin/blob/master/src/test/java/io/jenkins/plugins/analysis/warnings/StepsITest.java#L275 and open the Jenkins under test (you need to suspend the test thread only). This parser creates a 2 line message. It has newlines in the issue.message property but in the UI it is shown in a single line. It would make sense to either put everything into a <pre>*</pre> or to insert <br/> after each line. (The same is true for the description if I remember correctly). I'm not sure if such a change can be applied to all parsers or if we should have a property for parsers that already report messages or descriptions in HTML. But we can check this afterwards if the fix is working for some of the multi-line parsers... |