aboutsummaryrefslogtreecommitdiffstats
path: root/src/epub.rs
diff options
context:
space:
mode:
authorJames Campos <james.r.campos@gmail.com>2020-07-09 20:43:44 -0700
committerJames Campos <james.r.campos@gmail.com>2020-07-09 20:43:44 -0700
commit04d88a776b11b71d0181ac05544f5dfe415f5ea1 (patch)
tree611ffd4924ca7a2483d65f3d4065d830913b590e /src/epub.rs
parent7d7fe1ad2c1232811c7b365847aa415ff6a4d90d (diff)
downloadbk-04d88a776b11b71d0181ac05544f5dfe415f5ea1.tar.gz
attrs
Diffstat (limited to 'src/epub.rs')
-rw-r--r--src/epub.rs34
1 files changed, 20 insertions, 14 deletions
diff --git a/src/epub.rs b/src/epub.rs
index 882175e..b523c06 100644
--- a/src/epub.rs
+++ b/src/epub.rs
@@ -1,9 +1,12 @@
+use crossterm::style::Attribute;
use roxmltree::{Document, Node};
use std::{collections::HashMap, fs::File, io::Read};
+type Attrs = Vec<(usize, Attribute)>;
+
pub struct Epub {
container: zip::ZipArchive<File>,
- pub chapters: Vec<(String, String)>,
+ pub chapters: Vec<(String, String, Attrs)>,
pub meta: String,
}
@@ -33,18 +36,19 @@ impl Epub {
fn get_chapters(&mut self, chapters: Vec<(String, String)>) {
self.chapters = chapters
.into_iter()
- .filter_map(|(path, title)| {
+ .filter_map(|(title, path)| {
let xml = self.get_text(&path);
// https://github.com/RazrFalcon/roxmltree/issues/12
// UnknownEntityReference for HTML entities
let doc = Document::parse(&xml).unwrap();
let body = doc.root_element().last_element_child().unwrap();
- let mut chapter = String::new();
- render(body, &mut chapter);
- if chapter.is_empty() {
+ let mut text = String::new();
+ let mut attrs = vec![(0, Attribute::Reset)];
+ render(body, &mut text, &mut attrs);
+ if text.is_empty() {
None
} else {
- Some((chapter, title))
+ Some((title, text, attrs))
}
})
.collect();
@@ -113,13 +117,13 @@ impl Epub {
let path = manifest.remove(id).unwrap();
let label = nav.remove(path).unwrap_or_else(|| i.to_string());
let path = format!("{}{}", rootdir, path);
- (path, label)
+ (label, path)
})
.collect()
}
}
-fn render(n: Node, buf: &mut String) {
+fn render(n: Node, buf: &mut String, attrs: &mut Attrs) {
if n.is_text() {
let text = n.text().unwrap();
if !text.trim().is_empty() {
@@ -130,30 +134,32 @@ fn render(n: Node, buf: &mut String) {
match n.tag_name().name() {
"h1" | "h2" | "h3" | "h4" | "h5" | "h6" => {
- buf.push_str("\n\x1b[1m");
+ buf.push('\n');
+ attrs.push((buf.len(), Attribute::Bold));
for c in n.children() {
- render(c, buf);
+ render(c, buf, attrs);
}
- buf.push_str("\x1b[0m\n");
+ attrs.push((buf.len(), Attribute::Reset));
+ buf.push('\n');
}
"blockquote" | "p" | "tr" => {
buf.push('\n');
for c in n.children() {
- render(c, buf);
+ render(c, buf, attrs);
}
buf.push('\n');
}
"li" => {
buf.push_str("\n- ");
for c in n.children() {
- render(c, buf);
+ render(c, buf, attrs);
}
buf.push('\n');
}
"br" => buf.push('\n'),
_ => {
for c in n.children() {
- render(c, buf);
+ render(c, buf, attrs);
}
}
}