Import Ruty

This commit is contained in:
2024-03-11 00:54:46 +01:00
parent 2c0c53a22b
commit fbf47eaa3a
485 changed files with 67750 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
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));
};