kopia lustrzana https://github.com/miklobit/TiddlyWiki5
Added inline variant of filtered transclusion syntax
rodzic
c3a2a24b76
commit
11d001ad80
|
@ -0,0 +1,64 @@
|
|||
/*\
|
||||
title: $:/core/modules/parsers/wikiparser/rules/filteredtranscludeinline.js
|
||||
type: application/javascript
|
||||
module-type: wikirule
|
||||
|
||||
Wiki text rule for inline filtered transclusion. For example:
|
||||
|
||||
```
|
||||
{{{ [tag[docs]] }}}
|
||||
{{{ [tag[docs]] |tooltip}}}
|
||||
{{{ [tag[docs]] ||TemplateTitle}}}
|
||||
{{{ [tag[docs]] |tooltip||TemplateTitle}}}
|
||||
{{{ [tag[docs]] }}width:40;height:50;}.class.class
|
||||
```
|
||||
|
||||
\*/
|
||||
(function(){
|
||||
|
||||
/*jslint node: true, browser: true */
|
||||
/*global $tw: false */
|
||||
"use strict";
|
||||
|
||||
exports.name = "filteredtransclude";
|
||||
exports.types = {inline: true};
|
||||
|
||||
exports.init = function(parser) {
|
||||
this.parser = parser;
|
||||
// Regexp to match
|
||||
this.matchRegExp = /\{\{\{([^\{\}\|]+)(?:\|([^\|\{\}]+))?(?:\|\|([^\|\{\}]+))?\}\}([^\}]*)\}(?:\.(\S+))?/mg;
|
||||
};
|
||||
|
||||
exports.parse = function() {
|
||||
// Move past the match
|
||||
this.parser.pos = this.matchRegExp.lastIndex;
|
||||
// Get the match details
|
||||
var filter = this.match[1],
|
||||
tooltip = this.match[2],
|
||||
template = this.match[3],
|
||||
style = this.match[4],
|
||||
classes = this.match[5];
|
||||
// Return the list widget
|
||||
var node = {
|
||||
type: "widget",
|
||||
tag: "list",
|
||||
attributes: {
|
||||
filter: {type: "string", value: filter}
|
||||
}
|
||||
};
|
||||
if(tooltip) {
|
||||
node.attributes.tooltip = {type: "string", value: tooltip};
|
||||
}
|
||||
if(template) {
|
||||
node.attributes.template = {type: "string", value: template};
|
||||
}
|
||||
if(style) {
|
||||
node.attributes.style = {type: "string", value: style};
|
||||
}
|
||||
if(classes) {
|
||||
node.attributes["itemClass"] = {type: "string", value: classes.split(".").join(" ")};
|
||||
}
|
||||
return [node];
|
||||
};
|
||||
|
||||
})();
|
|
@ -55,7 +55,7 @@ exports.generateChildNodes = function() {
|
|||
var classes = ["tw-list-frame"];
|
||||
this.children = this.renderer.renderTree.createRenderers(this.renderer.renderContext,[{
|
||||
type: "element",
|
||||
tag: "div",
|
||||
tag: this.renderer.parseTreeNode.isBlock ? "div" : "span",
|
||||
attributes: {
|
||||
"class": {type: "string", value: classes.join(" ")}
|
||||
},
|
||||
|
@ -104,7 +104,7 @@ exports.createListElement = function(title) {
|
|||
// Return the list element
|
||||
return {
|
||||
type: "element",
|
||||
tag: "div",
|
||||
tag: this.renderer.parseTreeNode.isBlock ? "div" : "span",
|
||||
attributes: {
|
||||
"class": {type: "string", value: classes.join(" ")}
|
||||
},
|
||||
|
|
|
@ -14,6 +14,8 @@ New paragraph
|
|||
*.disabled Is a
|
||||
* List!!
|
||||
|
||||
An inline {{{ [tag[docs]tag[introduction]sort[title]] }}}.anotherClassy yes it is!
|
||||
|
||||
{{{ [tag[docs]tag[introduction]sort[title]] ||$:/templates/NewViewTemplate}}}.anotherClassy
|
||||
|
||||
<<me red green>>
|
||||
|
|
Ładowanie…
Reference in New Issue