mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-23 10:07:19 +00:00
Improved legibility of converted filenames
This commit is contained in:
parent
a52fd57e88
commit
74363b104a
2
ginsu.js
2
ginsu.js
@ -21,7 +21,7 @@ var tiddlers = tiddlyWikiInput.parseTiddlyWiki(tiddlywikidoc);
|
||||
var recipe = [];
|
||||
for(var t=0; t<tiddlers.length; t++) {
|
||||
var tid = new tiddler.Tiddler(tiddlers[t]);
|
||||
var filename = encodeURIComponent(tid.fields.title) + ".tid";
|
||||
var filename = encodeURIComponent(tid.fields.title.replace(/ /g,"_")) + ".tid";
|
||||
fs.writeFileSync(path.join(outputdir,filename),tiddlerOutput.outputTiddler(tid));
|
||||
recipe.push("tiddler: " + filename + "\n");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user