The messages from the FindBugs parser contain HTML formatting, but the spec for the CodeClimate description format says "no HTML formatting."
If the FindBugs details message were removed from the description , this wouldn't be an issue, but if it were to be moved to the CodeClimate contents field, the HTML should be converted to markdown.
I have no particular suggestion for how to do the conversion, but at first glance, it looks like it's mostly paragraph tags (<p>) and <code> tags. The former could be replaced by two carriage returns, and the later by backticks.
This is related to #167.
The messages from the FindBugs parser contain HTML formatting, but the spec for the CodeClimate
description
format says "no HTML formatting."If the FindBugs
details
message were removed from thedescription
, this wouldn't be an issue, but if it were to be moved to the CodeClimatecontents
field, the HTML should be converted to markdown.I have no particular suggestion for how to do the conversion, but at first glance, it looks like it's mostly paragraph tags (
<p>
) and<code>
tags. The former could be replaced by two carriage returns, and the later by backticks.