1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-01 01:33:16 +00:00

Run version of class wikitext rule

This commit is contained in:
Jeremy Ruston 2012-07-15 23:07:25 +01:00
parent f97c6b6c25
commit 0bd059c1f7

View File

@ -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)];
};
})();