tomasbjerre / violations-lib

Java library for parsing report files from static code analysis.
Apache License 2.0
148 stars 39 forks source link

Show character instead of HTML Character code after comment POST #99

Closed anirudhbagri closed 4 years ago

anirudhbagri commented 4 years ago

ACTUAL: Some parser output might have messages which have " ' " (HTML Character) in them, and it doesn't convert back to " ' " after final POST.

EXPECTED: After posting the comment, the comment should have only " ' " and not the HTML Character code.

For, eg. image

anirudhbagri commented 4 years ago

Turns out adding mustache template works fine.

-comment-template "message: {{{violation.message}}}"

Related to #106