1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-11-30 05:19:57 +00:00

fix: ignore base file

This commit is contained in:
linonetwo 2024-10-30 14:49:33 +08:00
parent 0c92f1bb40
commit 562a308811
2 changed files with 7 additions and 6 deletions

View File

@ -1,9 +1,3 @@
/*\
title: $:/core/modules/parsers/base.js
type: application/javascript
module-type: library
\*/
/**
* Represents an attribute in a parse tree node
*

View File

@ -16,6 +16,11 @@ Adds the following properties to the wiki object:
* `globalCache` is a hashmap by cache name of cache objects that are cleared whenever any tiddler change occurs
\*/
(function(){
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
var Widget = require("$:/core/modules/widgets/widget.js").widget;
@ -1794,3 +1799,5 @@ exports.slugify = function(title,options) {
}
return slug;
};
})();