tiddlywiki
Version:
a non-linear personal web notebook
29 lines (21 loc) • 434 B
JavaScript
/*\
title: $:/core/modules/macros/jsontiddlers.js
type: application/javascript
module-type: macro
Macro to output tiddlers matching a filter to JSON
\*/
;
/*
Information about this macro
*/
exports.name = "jsontiddlers";
exports.params = [
{name: "filter"},
{name: "spaces"}
];
/*
Run the macro
*/
exports.run = function(filter,spaces) {
return this.wiki.getTiddlersAsJson(filter,$tw.utils.parseInt(spaces));
};