(doc: &Document<'a>, name: &str)
| 313 | |
| 314 | |
| 315 | pub fn create_mathml_element<'a>(doc: &Document<'a>, name: &str) -> Element<'a> { |
| 316 | return doc.create_element(sxd_document::QName::with_namespace_uri( |
| 317 | Some("http://www.w3.org/1998/Math/MathML"), |
| 318 | name)); |
| 319 | } |
| 320 | |
| 321 | pub fn is_fence(mo: Element) -> bool { |
| 322 | return CanonicalizeContext::new() |
no outgoing calls
no test coverage detected