1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-11 23:09:42 +00:00
TiddlyWiki5/js/macros/image.js
2012-01-15 14:37:49 +00:00

35 lines
648 B
JavaScript

/*\
title: js/macros/image.js
\*/
(function(){
/*jslint node: true */
"use strict";
var utils = require("../Utils.js");
exports.macro = {
name: "image",
types: ["text/html","text/plain"],
params: {
src: {byName: "default", type: "tiddler", optional: false},
text: {byName: true, type: "text", optional: true}
},
handler: function(type,tiddler,store,params) {
if(type === "text/html") {
return utils.stitchElement("img",{
href: params.src,
alt: params.text,
title: params.text
},{
selfClosing: true
});
} else if (type === "text/plain") {
return params.text ? params.text : params.src;
}
}
};
})();