Comment and whitespace tweaks

print-window-tiddler
Jeremy Ruston 2012-05-26 23:37:24 +01:00
rodzic a9f34b8b00
commit 6dae1ad35a
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -3,7 +3,7 @@ title: $:/core/modules/parsers/newwikitextparser/runrules/wikilink.js
type: application/javascript
module-type: wikitextrunrule
Wiki text run rule for wiki links
Wiki text run rule for wiki links.
\*/
(function(){
@ -29,7 +29,7 @@ textPrimitives.wikiLink = "(?:(?:" + textPrimitives.upperLetter + "+" +
textPrimitives.upperLetter + "{2,}" +
textPrimitives.lowerLetter + "+))";
exports.regExpString = textPrimitives.unWikiLink+"?"+textPrimitives.wikiLink;
exports.regExpString = textPrimitives.unWikiLink + "?" + textPrimitives.wikiLink;
exports.parse = function(match) {
this.pos = match.index + match[0].length;