add initial marp implementation with sample content and build configuration
This commit is contained in:
33
node_modules/speech-rule-engine/js/highlighter/mml_highlighter.js
generated
vendored
Normal file
33
node_modules/speech-rule-engine/js/highlighter/mml_highlighter.js
generated
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.MmlHighlighter = void 0;
|
||||
const abstract_highlighter_js_1 = require("./abstract_highlighter.js");
|
||||
class MmlHighlighter extends abstract_highlighter_js_1.AbstractHighlighter {
|
||||
constructor() {
|
||||
super();
|
||||
this.mactionName = 'maction';
|
||||
}
|
||||
highlightNode(node) {
|
||||
let style = node.getAttribute('style');
|
||||
style += ';background-color: ' + this.colorString().background;
|
||||
style += ';color: ' + this.colorString().foreground;
|
||||
node.setAttribute('style', style);
|
||||
return { node: node };
|
||||
}
|
||||
unhighlightNode(info) {
|
||||
let style = info.node.getAttribute('style');
|
||||
style = style.replace(';background-color: ' + this.colorString().background, '');
|
||||
style = style.replace(';color: ' + this.colorString().foreground, '');
|
||||
info.node.setAttribute('style', style);
|
||||
}
|
||||
colorString() {
|
||||
return this.color.rgba();
|
||||
}
|
||||
getMactionNodes(node) {
|
||||
return Array.from(node.getElementsByTagName(this.mactionName));
|
||||
}
|
||||
isMactionNode(node) {
|
||||
return node.tagName === this.mactionName;
|
||||
}
|
||||
}
|
||||
exports.MmlHighlighter = MmlHighlighter;
|
||||
Reference in New Issue
Block a user