(&mut self, at_rules: &str)
| 604 | } |
| 605 | |
| 606 | fn write_at_rules_style(&mut self, at_rules: &str) -> Result<(), InlineError> { |
| 607 | self.writer.write_all(b"<style>")?; |
| 608 | self.writer.write_all(at_rules.as_bytes())?; |
| 609 | self.writer.write_all(b"</style>")?; |
| 610 | Ok(()) |
| 611 | } |
| 612 | |
| 613 | fn write_comment(&mut self, text: &str) -> Result<(), InlineError> { |
| 614 | self.writer.write_all(b"<!--")?; |