Files
main-website/ruty/js/node_modules/rtf/lib/elements/text.js
T
2024-03-11 00:54:46 +01:00

12 lines
346 B
JavaScript

var Element = require('./element');
module.exports = TextElement = function(text, format){
Element.apply(this, [format]);
this.text=text;
};
TextElement.subclass(Element);
TextElement.prototype.getRTFCode = function(colorTable, fontTable, callback){
return callback(null, this.format.formatText(this.text, colorTable, fontTable));
};