aboutsummaryrefslogtreecommitdiffstats
path: root/src/epub.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/epub.rs')
-rw-r--r--src/epub.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/epub.rs b/src/epub.rs
index f850add..d74bd2a 100644
--- a/src/epub.rs
+++ b/src/epub.rs
@@ -47,11 +47,11 @@ impl Epub {
match n.tag_name().name() {
"h1" | "h2" | "h3" | "h4" | "h5" | "h6" => {
- buf.push_str("\n\x1b\x5b1m");
+ buf.push_str("\n\x1b[1m");
for c in n.children() {
Self::render(buf, c);
}
- buf.push_str("\x1b\x5b0m\n");
+ buf.push_str("\x1b[0m\n");
}
"blockquote" | "p" | "tr" => {
buf.push('\n');