microsoft / binskim

A binary static analysis tool that provides security and correctness results for Windows Portable Executable and *nix ELF binary formats
Other
779 stars 156 forks source link

[Editorial] Fix render of angle brackets in binskim rules doc #964

Closed ThomsonTan closed 10 months ago

ThomsonTan commented 1 year ago

Angle brackets are rendered as empty in markdown which makes the xml element like <ChecksumAlgorithm> invisible. One option is replacing '<' by "<". Another option used in this PR is wrapping the xml element in code marker. The latter approach makes the element visible in the raw text format as well.

michaelcfanning commented 10 months ago

Thanks for this!