@tiddlygit/tiddlywiki
Version:
a non-linear personal web notebook
31 lines (29 loc) • 554 B
JavaScript
/*\
title: $:/macros/tiddlywiki/entry.js
type: application/javascript
module-type: macro
\*/
(function(){
/*jslint node: true, browser: true */
/*global $tw: false */
;
/*
Information about this macro
returns value of key in a data json tiddler
note that macros are not connected with the refresh mechanism -use with caution.
*/
exports.name = "entryof";
exports.params = [
{ name: "key" }, { name: "map" }
];
/*
Run the macro
*/
exports.run = function(key,map) {
try{
return JSON.parse(map)[key];
} catch(e) {
return "";
}
}
})();