49 lines
1.6 KiB
JavaScript
49 lines
1.6 KiB
JavaScript
|
"use strict";
|
||
|
var __values = (this && this.__values) || function(o) {
|
||
|
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
|
||
|
if (m) return m.call(o);
|
||
|
if (o && typeof o.length === "number") return {
|
||
|
next: function () {
|
||
|
if (o && i >= o.length) o = void 0;
|
||
|
return { value: o && o[i++], done: !o };
|
||
|
}
|
||
|
};
|
||
|
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
|
||
|
};
|
||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
exports.NoUndefinedConfiguration = void 0;
|
||
|
var Configuration_js_1 = require("../Configuration.js");
|
||
|
function noUndefined(parser, name) {
|
||
|
var e_1, _a;
|
||
|
var textNode = parser.create('text', '\\' + name);
|
||
|
var options = parser.options.noundefined || {};
|
||
|
var def = {};
|
||
|
try {
|
||
|
for (var _b = __values(['color', 'background', 'size']), _c = _b.next(); !_c.done; _c = _b.next()) {
|
||
|
var id = _c.value;
|
||
|
if (options[id]) {
|
||
|
def['math' + id] = options[id];
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
||
|
finally {
|
||
|
try {
|
||
|
if (_c && !_c.done && (_a = _b.return)) _a.call(_b);
|
||
|
}
|
||
|
finally { if (e_1) throw e_1.error; }
|
||
|
}
|
||
|
parser.Push(parser.create('node', 'mtext', [], def, textNode));
|
||
|
}
|
||
|
exports.NoUndefinedConfiguration = Configuration_js_1.Configuration.create('noundefined', {
|
||
|
fallback: { macro: noUndefined },
|
||
|
options: {
|
||
|
noundefined: {
|
||
|
color: 'red',
|
||
|
background: '',
|
||
|
size: ''
|
||
|
}
|
||
|
},
|
||
|
priority: 3
|
||
|
});
|
||
|
//# sourceMappingURL=NoUndefinedConfiguration.js.map
|