(html: &str, css: &str)
| 965 | /// using the same inliner panicked while resolving external stylesheets. |
| 966 | #[inline] |
| 967 | pub fn inline_fragment(html: &str, css: &str) -> Result<String> { |
| 968 | CSSInliner::default().inline_fragment(html, css) |
| 969 | } |
| 970 | |
| 971 | /// Shortcut for inlining CSS into an HTML fragment with default parameters and writing the output to a generic writer. |
| 972 | /// |
nothing calls this directly
no test coverage detected