1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-02 18:23:28 +00:00
TiddlyWiki5/core/modules/parsers/wikiparser/rules/prettylink.js

64 lines
1.2 KiB
JavaScript
Raw Normal View History

2012-12-15 17:35:35 +00:00
/*\
title: $:/core/modules/parsers/wikiparser/rules/prettylink.js
2012-12-15 17:35:35 +00:00
type: application/javascript
module-type: wikirule
2012-12-15 17:35:35 +00:00
Wiki text inline rule for pretty links. For example:
2012-12-15 17:35:35 +00:00
2012-12-22 23:09:44 +00:00
```
2012-12-15 17:35:35 +00:00
[[Introduction]]
[[Link description|TiddlerTitle]]
2012-12-22 23:09:44 +00:00
```
2012-12-15 17:35:35 +00:00
\*/
(function(){
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
exports.name = "prettylink";
exports.types = {inline: true};
2012-12-15 17:35:35 +00:00
exports.init = function(parser) {
this.parser = parser;
// Regexp to match
this.matchRegExp = /\[\[(.*?)(?:\|(.*?))?\]\]/mg;
};
exports.parse = function() {
// Move past the match
this.parser.pos = this.matchRegExp.lastIndex;
// Process the link
var text = this.match[1],
link = this.match[2] || text;
if($tw.utils.isLinkExternal(link)) {
return [{
type: "element",
tag: "a",
attributes: {
href: {type: "string", value: link},
"class": {type: "string", value: "tc-tiddlylink-external"},
target: {type: "string", value: "_blank"},
rel: {type: "string", value: "noopener noreferrer"}
},
children: [{
type: "text", text: text
}]
}];
} else {
return [{
type: "link",
attributes: {
to: {type: "string", value: link}
},
children: [{
type: "text", text: text
}]
}];
}
2012-12-15 17:35:35 +00:00
};
})();