blob: 343f7af701cd15a5044a8c27e9333d101f0ef66f [file] [log] [blame]
/***********************************************
* Export math in a human-readable text format
* As you can see, only half-baked so far.
**********************************************/
Controller.open(function(_, super_) {
_.exportText = function() {
return this.root.foldChildren('', function(text, child) {
return text + child.text();
});
};
});