hojas/node_modules/speech-rule-engine/mjs/highlighter/mml_css_highlighter.js

14 lines
382 B
JavaScript
Raw Normal View History

2026-05-14 10:56:04 +02:00
import { CssHighlighter } from './css_highlighter.js';
export class MmlCssHighlighter extends CssHighlighter {
constructor() {
super();
this.mactionName = 'maction';
}
getMactionNodes(node) {
return Array.from(node.getElementsByTagName(this.mactionName));
}
isMactionNode(node) {
return node.tagName === this.mactionName;
}
}