fixup! 342bb6f78785cc3c7623345a9cabf05dfcd71975
This commit is contained in:
parent
1dc339403d
commit
5fe724e873
1 changed files with 1 additions and 1 deletions
|
@ -103,13 +103,13 @@ impl<'s, I: Iterator<Item = Event<'s>>, W: std::fmt::Write> Writer<I, W> {
|
|||
Container::Table => self.out.write_str("</table>")?,
|
||||
Container::TableRow => self.out.write_str("</tr>")?,
|
||||
Container::Div => self.out.write_str("</div>")?,
|
||||
Container::Span => self.out.write_str("</span>")?,
|
||||
Container::Paragraph => self.out.write_str("</p>")?,
|
||||
Container::Heading { level } => write!(self.out, "</h{}>", level)?,
|
||||
Container::TableCell => self.out.write_str("</td>")?,
|
||||
Container::DescriptionTerm => self.out.write_str("</dt>")?,
|
||||
Container::RawBlock { .. } => todo!(),
|
||||
Container::CodeBlock { .. } => todo!(),
|
||||
Container::Span => self.out.write_str("</span>")?,
|
||||
Container::Link(..) => todo!(),
|
||||
Container::Image(..) => todo!(),
|
||||
Container::Subscript => self.out.write_str("</sub>")?,
|
||||
|
|
Loading…
Reference in a new issue