xhtml: Panic on unknown elements still present after parsing.

This commit is contained in:
Emmanuel Gil Peyrot 2019-09-05 11:58:48 +02:00
parent 24e862e352
commit cde011aa5e

View file

@ -241,7 +241,7 @@ impl Tag {
let style = write_attr(get_style_string(style), "style"); let style = write_attr(get_style_string(style), "style");
format!("<ul{}>{}</ul>", style, children_to_html(children)) format!("<ul{}>{}</ul>", style, children_to_html(children))
} }
Tag::Unknown(children) => children_to_html(children), Tag::Unknown(children) => panic!("No unknown element should be present in XHTML-IM after parsing."),
} }
} }
} }
@ -334,7 +334,7 @@ impl From<Tag> for Element {
Some(style) => vec![("style", style)], Some(style) => vec![("style", style)],
None => vec![], None => vec![],
}, children), }, children),
Tag::Unknown(children) => return Element::builder("unknown").ns(ns::XHTML).append(children_to_nodes(children)).build(), Tag::Unknown(children) => panic!("No unknown element should be present in XHTML-IM after parsing."),
}; };
let mut builder = Element::builder(name) let mut builder = Element::builder(name)
.ns(ns::XHTML) .ns(ns::XHTML)