xhtml: Use _ for children of Unknown.

This commit is contained in:
Emmanuel Gil Peyrot 2019-09-05 14:13:37 +02:00
parent cde011aa5e
commit f25d4c79b7

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) => panic!("No unknown element should be present in XHTML-IM after parsing."), Tag::Unknown(_) => 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) => panic!("No unknown element should be present in XHTML-IM after parsing."), Tag::Unknown(_) => 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)