parsers/xhtml: keep iterating on all bodies
Revert part of b522eaf7f3
.
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
parent
b522eaf7f3
commit
c8f312e89d
1 changed files with 2 additions and 1 deletions
|
@ -26,7 +26,7 @@ impl XhtmlIm {
|
||||||
pub fn into_html(self) -> String {
|
pub fn into_html(self) -> String {
|
||||||
let mut html = Vec::new();
|
let mut html = Vec::new();
|
||||||
// TODO: use the best language instead.
|
// TODO: use the best language instead.
|
||||||
if let Some((lang, body)) = self.bodies.into_iter().next() {
|
for (lang, body) in self.bodies {
|
||||||
if lang.is_empty() {
|
if lang.is_empty() {
|
||||||
assert!(body.xml_lang.is_none());
|
assert!(body.xml_lang.is_none());
|
||||||
} else {
|
} else {
|
||||||
|
@ -35,6 +35,7 @@ impl XhtmlIm {
|
||||||
for tag in body.children {
|
for tag in body.children {
|
||||||
html.push(tag.into_html());
|
html.push(tag.into_html());
|
||||||
}
|
}
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
html.concat()
|
html.concat()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue