(&self, html: &str, target: &mut W)
| 584 | /// using the same inliner panicked while resolving external stylesheets. |
| 585 | #[inline] |
| 586 | pub fn inline_to<W: Write>(&self, html: &str, target: &mut W) -> Result<()> { |
| 587 | self.inline_to_impl(html, None, target, InliningMode::Document) |
| 588 | } |
| 589 | |
| 590 | /// Inline CSS into an HTML fragment. |
| 591 | /// |
no test coverage detected