mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-03-30 23:36:56 +00:00
Adjust cache names for parse caches
The old names were a hangover from an old refactoring.
This commit is contained in:
parent
203bc4b242
commit
8bfc6f3557
@ -777,7 +777,7 @@ Parse a tiddler according to its MIME type
|
||||
*/
|
||||
exports.parseTiddler = function(title,options) {
|
||||
options = $tw.utils.extend({},options);
|
||||
var cacheType = options.parseAsInline ? "newInlineParseTree" : "newBlockParseTree",
|
||||
var cacheType = options.parseAsInline ? "inlineParseTree" : "blockParseTree",
|
||||
tiddler = this.getTiddler(title),
|
||||
self = this;
|
||||
return tiddler ? this.getCacheForTiddler(title,cacheType,function() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user