(mathml: Element, nav_node_id: &str)
| 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); |
| 79 | } |
| 80 | |
| 81 | |
| 82 | fn intent_rules<'m>(rules: &'static std::thread::LocalKey<RefCell<SpeechRules>>, doc: Document<'m>, mathml: Element, nav_node_id: &'m str) -> Result<Element<'m>> { |
no test coverage detected