Run version of class wikitext rule

print-window-tiddler
Jeremy Ruston 2012-07-15 23:07:25 +01:00
rodzic f97c6b6c25
commit 0bd059c1f7
1 zmienionych plików z 41 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,41 @@
/*\
title: $:/core/modules/parsers/newwikitextparser/rules/classrun.js
type: application/javascript
module-type: wikitextrule
Wiki text run rule for assigning classes to paragraphs and other blocks. For example:
{{{
{{myClass{This text will have the CSS class `myClass`.
* This will not be recognised as a list
List item 2}}}
}}}
\*/
(function(){
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
exports.name = "class";
exports.runParser = true;
exports.regExpString = "\\{\\{(?:[^\\{\\r\\n]+)\\{";
exports.parse = function(match,isBlock) {
var tree,
reStart = /\{\{([^\{\r\n]+){/mg,
reEnd = /(\}\}\})/g;
reStart.lastIndex = this.pos;
match = reStart.exec(this.source);
this.pos = match.index + match[0].length;
tree = this.parseRun(reEnd,{leaveTerminator: false});
return [$tw.Tree.Element("span",{"class":match[0]},tree)];
};
})();