1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-15 16:34:23 +00:00
TiddlyWiki5/js/macros/link.js
2012-01-16 08:58:51 +00:00

34 lines
609 B
JavaScript

/*\
title: js/macros/link.js
\*/
(function(){
/*jslint node: true */
"use strict";
var utils = require("../Utils.js");
exports.macro = {
name: "link",
wrapperTag: "span",
types: ["text/html","text/plain"],
params: {
target: {byName: "default", type: "tiddler", optional: false}
},
handler: function(type,tiddler,store,params,content) {
if(type === "text/html") {
return utils.stitchElement("a",{
href: params.target
},{
content: content,
classNames: store.adjustClassesForLink([],params.target)
});
} else if (type === "text/plain") {
return content;
}
}
};
})();