1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-16 09:19:43 +00:00
TiddlyWiki5/js/macros/link.js
Jeremy Ruston ca6e32bd5a Refactor link handling to use a link macro
Instead of the special case handling for <a> tags
2012-01-15 13:29:16 +00:00

36 lines
710 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},
text: {byName: true, type: "text", optional: true}
},
handler: function(type,tiddler,store,params) {
var text = params.text || params.target;
if(type === "text/html") {
return utils.stitchElement("a",{
href: params.target
},{
content: utils.htmlEncode(text),
classNames: store.adjustClassesForLink([],params.target)
});
} else if (type === "text/plain") {
return text;
}
}
};
})();