diff options
Diffstat (limited to 'crates/shirabe/src/console')
| -rw-r--r-- | crates/shirabe/src/console/html_output_formatter.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/crates/shirabe/src/console/html_output_formatter.rs b/crates/shirabe/src/console/html_output_formatter.rs index 39294c8..a2158fa 100644 --- a/crates/shirabe/src/console/html_output_formatter.rs +++ b/crates/shirabe/src/console/html_output_formatter.rs @@ -42,10 +42,8 @@ impl HtmlOutputFormatter { ]; pub fn new(styles: IndexMap<String, OutputFormatterStyle>) -> Self { - // TODO(phase-b): styles dropped until base OutputFormatter::new accepts a style map - let _ = styles; Self { - inner: OutputFormatter::new(true), + inner: OutputFormatter::new(true, styles), } } |
