(rules: &'r mut SpeechRulesWithContext<'c, 's,'m>, nodes: Vec<Node<'c>>, mathml: Element<'c>)
| 281 | } |
| 282 | |
| 283 | fn replace_nodes<'s:'c, 'r>(rules: &'r mut SpeechRulesWithContext<'c, 's,'m>, nodes: Vec<Node<'c>>, mathml: Element<'c>) -> Result<String> { |
| 284 | return rules.replace_nodes_string(nodes, mathml); |
| 285 | } |
| 286 | |
| 287 | fn highlight_braille(braille: String, highlight_style: String) -> String { |
| 288 | return SpeechRulesWithContext::highlight_braille_string(braille, highlight_style); |
no test coverage detected