Closed
Description
Describe the bug
The badges in Markdown summary reports are not escaping the %
symbol. They look like this:

By escaping the %
using %25
, the badge renders correctly:

Example from official website:
https://reportgenerator.io/resources/reports/MarkdownAssembliesSummary/Summary.md
Original
Summary
Assembly | Line coverage | Branch coverage | Method coverage |
---|---|---|---|
Sample | 69.4% | 50% | 66.6% |
Fixed by replacing %
with %25
Summary
Assembly | Line coverage | Branch coverage | Method coverage |
---|---|---|---|
Sample | 69.4% | 50% | 66.6% |