1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-05 11:43:16 +00:00
TiddlyWiki5/core/modules/commands/rendertiddler.js

45 lines
884 B
JavaScript
Raw Normal View History

2012-05-03 20:46:35 +00:00
/*\
title: $:/core/modules/commands/rendertiddler.js
2012-05-03 20:46:35 +00:00
type: application/javascript
module-type: command
Command to render a tiddler and save it to a file
2012-05-03 20:46:35 +00:00
\*/
(function(){
/*jslint node: true, browser: true */
2012-05-04 17:49:04 +00:00
/*global $tw: false */
2012-05-03 20:46:35 +00:00
"use strict";
exports.info = {
name: "rendertiddler",
2012-05-03 20:46:35 +00:00
synchronous: false
};
var Command = function(params,commander,callback) {
this.params = params;
this.commander = commander;
this.callback = callback;
};
Command.prototype.execute = function() {
if(this.params.length < 2) {
return "Missing filename";
}
var self = this,
fs = require("fs"),
path = require("path"),
title = this.params[0],
filename = this.params[1],
type = this.params[2] || "text/html";
fs.writeFile(filename,this.commander.wiki.renderTiddler(type,title),"utf8",function(err) {
2012-05-03 20:46:35 +00:00
self.callback(err);
});
return null;
};
exports.Command = Command;
})();