Collapse newlines from consecutive blocks and add indent to blockquote
This commit is contained in:
@ -31,18 +31,35 @@ pub fn escape_html<S: ?Sized + AsRef<str>>(s: &S) -> Cow<'_, str> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Clone, Debug)]
|
#[derive(Clone, Debug)]
|
||||||
struct FormatState<'a> {
|
struct FormatState {
|
||||||
style: Style,
|
style: Style,
|
||||||
padding: &'a str,
|
padding: String,
|
||||||
}
|
}
|
||||||
|
|
||||||
fn format_tree(tree: Rc<Node>, state: FormatState, text: &mut Text<'static>) {
|
fn format_tree(
|
||||||
|
tree: Rc<Node>,
|
||||||
|
state: FormatState,
|
||||||
|
text: &mut Text<'static>,
|
||||||
|
mut previous_sibling_is_block: bool,
|
||||||
|
) -> bool {
|
||||||
use markup5ever_rcdom::NodeData::*;
|
use markup5ever_rcdom::NodeData::*;
|
||||||
let state = match &tree.data {
|
let state = match &tree.data {
|
||||||
Document | Doctype { .. } | Comment { .. } | ProcessingInstruction { .. } => state,
|
Document | Doctype { .. } | Comment { .. } | ProcessingInstruction { .. } => state,
|
||||||
Text { contents } => {
|
Text { contents } => {
|
||||||
|
let s: String = contents.clone().into_inner().into();
|
||||||
|
let s = s.replace('\n', ""); // Lines are insignificant in HTML
|
||||||
|
if previous_sibling_is_block && !s.is_empty() {
|
||||||
|
text.lines.push(Line {
|
||||||
|
spans: vec![Span {
|
||||||
|
content: Cow::Owned(state.padding.to_owned()),
|
||||||
|
style: state.style,
|
||||||
|
}],
|
||||||
|
alignment: None,
|
||||||
|
});
|
||||||
|
previous_sibling_is_block = false;
|
||||||
|
}
|
||||||
text.lines.last_mut().unwrap().spans.push(Span {
|
text.lines.last_mut().unwrap().spans.push(Span {
|
||||||
content: Cow::Owned(contents.clone().into_inner().into()),
|
content: Cow::Owned(s.to_owned()),
|
||||||
style: state.style,
|
style: state.style,
|
||||||
});
|
});
|
||||||
state
|
state
|
||||||
@ -61,13 +78,15 @@ fn format_tree(tree: Rc<Node>, state: FormatState, text: &mut Text<'static>) {
|
|||||||
state
|
state
|
||||||
},
|
},
|
||||||
"p" => {
|
"p" => {
|
||||||
text.lines.push(Line::raw(state.padding.to_owned()));
|
previous_sibling_is_block = true;
|
||||||
state
|
state
|
||||||
},
|
},
|
||||||
"blockquote" => {
|
"blockquote" => {
|
||||||
// TODO: indent
|
previous_sibling_is_block = true;
|
||||||
text.lines.push(Line::raw(state.padding.to_owned()));
|
FormatState {
|
||||||
state
|
padding: state.padding + "> ",
|
||||||
|
..state
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"em" | "i" => FormatState {
|
"em" | "i" => FormatState {
|
||||||
style: state.style.italic(),
|
style: state.style.italic(),
|
||||||
@ -87,7 +106,12 @@ fn format_tree(tree: Rc<Node>, state: FormatState, text: &mut Text<'static>) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
for subtree in tree.children.borrow().iter() {
|
for subtree in tree.children.borrow().iter() {
|
||||||
format_tree(subtree.clone(), state.clone(), text);
|
previous_sibling_is_block = format_tree(
|
||||||
|
subtree.clone(),
|
||||||
|
state.clone(),
|
||||||
|
text,
|
||||||
|
previous_sibling_is_block,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
match &tree.data {
|
match &tree.data {
|
||||||
@ -102,11 +126,15 @@ fn format_tree(tree: Rc<Node>, state: FormatState, text: &mut Text<'static>) {
|
|||||||
attrs,
|
attrs,
|
||||||
..
|
..
|
||||||
} => match name.as_ref() {
|
} => match name.as_ref() {
|
||||||
"p" | "blockquote" => text.lines.push(Line::default()),
|
"p" | "blockquote" => {
|
||||||
|
previous_sibling_is_block = true;
|
||||||
|
},
|
||||||
_ => {},
|
_ => {},
|
||||||
},
|
},
|
||||||
Element { .. } => {},
|
Element { .. } => {},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
previous_sibling_is_block
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn format_html(s: &str) -> Text<'static> {
|
pub fn format_html(s: &str) -> Text<'static> {
|
||||||
@ -120,9 +148,9 @@ pub fn format_html(s: &str) -> Text<'static> {
|
|||||||
.document;
|
.document;
|
||||||
let state = FormatState {
|
let state = FormatState {
|
||||||
style: Style::default(),
|
style: Style::default(),
|
||||||
padding: " ",
|
padding: " ".to_owned(),
|
||||||
};
|
};
|
||||||
let mut text = Text::raw("");
|
let mut text = Text::raw("");
|
||||||
format_tree(tree, state, &mut text);
|
format_tree(tree, state, &mut text, false);
|
||||||
text
|
text
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user