mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-27 03:57:21 +00:00
Alphabetically sort tiddlers
TiddlyWiki does this to make life easier for SCC systems
This commit is contained in:
parent
cfa448f712
commit
b07d518425
@ -93,6 +93,7 @@ var Recipe = function(store,filepath,callback) {
|
||||
};
|
||||
this.tiddlerQueue.drain = function() {
|
||||
me.chooseTiddlers(me.recipe);
|
||||
me.sortTiddlersForMarker("tiddler");
|
||||
me.callback();
|
||||
};
|
||||
this.recipeQueue.push({filepath: filepath,
|
||||
@ -140,6 +141,12 @@ Recipe.prototype.chooseTiddlers = function(recipe) {
|
||||
}
|
||||
};
|
||||
|
||||
Recipe.prototype.sortTiddlersForMarker = function(marker) {
|
||||
if(this.markers[marker]) {
|
||||
this.markers[marker].sort();
|
||||
}
|
||||
};
|
||||
|
||||
// Process the contents of a recipe file
|
||||
Recipe.prototype.processRecipeFile = function(recipe,text,contextPath) {
|
||||
var me = this;
|
||||
|
Loading…
Reference in New Issue
Block a user