(mathml: Element, nav_node_id: &str)
| 71 | } |
| 72 | |
| 73 | pub fn speak_mathml(mathml: Element, nav_node_id: &str) -> Result<String> { |
| 74 | return speak_rules(&SPEECH_RULES, mathml, nav_node_id); |
| 75 | } |
| 76 | |
| 77 | pub fn overview_mathml(mathml: Element, nav_node_id: &str) -> Result<String> { |
| 78 | return speak_rules(&OVERVIEW_RULES, mathml, nav_node_id); |
no test coverage detected