I'm trying to avoid the GitHub MarkdownExporter highlighting certain rows using Bold. Looking at source code there is an option:
|
[PublicAPI] protected MarkdownHighlightStrategy StartOfGroupHighlightStrategy = MarkdownHighlightStrategy.None; |
However, there is no way to set this or override. Additionally, one cannot simple create a sub-class for customization as the ctor is private.
|
private MarkdownExporter() { } |
Could this not be opened up? So one can reuse these parts?
Are there other ways of avoiding the bolding, and how can I in code get the file names of exported reports?
I'm trying to avoid the GitHub MarkdownExporter highlighting certain rows using Bold. Looking at source code there is an option:
BenchmarkDotNet/src/BenchmarkDotNet/Exporters/MarkdownExporter.cs
Line 81 in d058c7b
However, there is no way to set this or override. Additionally, one cannot simple create a sub-class for customization as the ctor is private.
BenchmarkDotNet/src/BenchmarkDotNet/Exporters/MarkdownExporter.cs
Line 89 in d058c7b
Could this not be opened up? So one can reuse these parts?
Are there other ways of avoiding the bolding, and how can I in code get the file names of exported reports?