diff options
Diffstat (limited to 'src/epub.rs')
-rw-r--r-- | src/epub.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/epub.rs b/src/epub.rs index 9c53551..496ee96 100644 --- a/src/epub.rs +++ b/src/epub.rs @@ -200,7 +200,7 @@ fn render(n: Node, c: &mut Chapter) { c.render(n, Attribute::Underlined, Attribute::NoUnderline); c.links.push((start, c.text.len(), url.to_string())); } - _ => c.render_text(n) + _ => c.render_text(n), } } "em" => c.render(n, Attribute::Italic, Attribute::NoItalic), |