(html: &str)
| 925 | /// using the same inliner panicked while resolving external stylesheets. |
| 926 | #[inline] |
| 927 | pub fn inline(html: &str) -> Result<String> { |
| 928 | CSSInliner::default().inline(html) |
| 929 | } |
| 930 | |
| 931 | /// Shortcut for inlining CSS with default parameters and writing the output to a generic writer. |
| 932 | /// |