We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug
The badges in Markdown summary reports are not escaping the % symbol. They look like this:
%
![Line coverage](https://img.shields.io/badge/lines-65.7%-C10909)
which renders as
By escaping the % using %25, the badge renders correctly:
%25
![Line coverage](https://img.shields.io/badge/lines-65.7%25-C10909)
https://reportgenerator.io/resources/reports/MarkdownAssembliesSummary/Summary.md
The text was updated successfully, but these errors were encountered:
#719 Fixed badges in MarkdownAssembliesSummary report
6a2db6e
Thanks for reporting this issue. I already fixed the problem in 6a2db6e. The next release will contain this change.
Sorry, something went wrong.
No branches or pull requests
Describe the bug
The badges in Markdown summary reports are not escaping the
%
symbol. They look like this:which renders as
By escaping the
%
using%25
, the badge renders correctly:which renders as
Example from official website:
https://reportgenerator.io/resources/reports/MarkdownAssembliesSummary/Summary.md
Original
Summary
Fixed by replacing
%
with%25
Summary
The text was updated successfully, but these errors were encountered: