1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-16 09:19:43 +00:00
TiddlyWiki5/core/modules/filters/searchVia.js

29 lines
570 B
JavaScript
Raw Normal View History

/*\
title: $:/core/modules/filters/searchVia.js
type: application/javascript
module-type: filteroperator
Filter operator for searching for the text in the operand tiddler
\*/
(function(){
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
/*
Export our filter function
*/
exports.searchVia = function(source,operator,options) {
var term = options.wiki.getTiddlerText(operator.operand,""),
invert = operator.prefix === "!";
return options.wiki.search(term,{
titles: source,
invert: invert,
exclude: [operator.operand]
});
};
})();