(html: &str, target: &mut W)
| 944 | /// using the same inliner panicked while resolving external stylesheets. |
| 945 | #[inline] |
| 946 | pub fn inline_to<W: Write>(html: &str, target: &mut W) -> Result<()> { |
| 947 | CSSInliner::default().inline_to(html, target) |
| 948 | } |
| 949 | |
| 950 | /// Shortcut for inlining CSS into an HTML fragment with default parameters. |
| 951 | /// |