diff --git a/src/export/html.rs b/src/export/html.rs index e0b0bd1..47ccb8c 100644 --- a/src/export/html.rs +++ b/src/export/html.rs @@ -49,7 +49,7 @@ impl> fmt::Display for HtmlEscape { } } -pub trait HtmlHandler>: Default { +pub trait HtmlHandler> { fn start(&mut self, w: W, element: &Element) -> Result<(), E>; fn end(&mut self, w: W, element: &Element) -> Result<(), E>; }