1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-11-27 20:10:03 +00:00

fixed whitespace

This commit is contained in:
Mario Pietsch 2014-07-24 23:47:13 +02:00
parent 7aa6c7c06d
commit 95f6c92192
6 changed files with 11 additions and 11 deletions

View File

@ -36,10 +36,10 @@ exports.parse = function() {
// Move past the match // Move past the match
this.parser.pos = this.matchRegExp.lastIndex; this.parser.pos = this.matchRegExp.lastIndex;
// Parse the run including the terminator // Parse the run including the terminator
var tree = this.parser.parseInlineRun(/''/mg,{eatTerminator: true}); var tree = this.parser.parseInlineRun(/''/mg,{eatTerminator: true});
// Return the classed span // Return the classed span
return [{ return [{
type: "element", type: "element",
tag: "strong", tag: "strong",

View File

@ -36,10 +36,10 @@ exports.parse = function() {
// Move past the match // Move past the match
this.parser.pos = this.matchRegExp.lastIndex; this.parser.pos = this.matchRegExp.lastIndex;
// Parse the run including the terminator // Parse the run including the terminator
var tree = this.parser.parseInlineRun(/\/\//mg,{eatTerminator: true}); var tree = this.parser.parseInlineRun(/\/\//mg,{eatTerminator: true});
// Return the classed span // Return the classed span
return [{ return [{
type: "element", type: "element",
tag: "em", tag: "em",

View File

@ -39,7 +39,7 @@ exports.parse = function() {
// Parse the run including the terminator // Parse the run including the terminator
var tree = this.parser.parseInlineRun(/~~/mg,{eatTerminator: true}); var tree = this.parser.parseInlineRun(/~~/mg,{eatTerminator: true});
// Return the classed span // Return the classed span
return [{ return [{
type: "element", type: "element",
tag: "strike", tag: "strike",

View File

@ -36,10 +36,10 @@ exports.parse = function() {
// Move past the match // Move past the match
this.parser.pos = this.matchRegExp.lastIndex; this.parser.pos = this.matchRegExp.lastIndex;
// Parse the run including the terminator // Parse the run including the terminator
var tree = this.parser.parseInlineRun(/,,/mg,{eatTerminator: true}); var tree = this.parser.parseInlineRun(/,,/mg,{eatTerminator: true});
// Return the classed span // Return the classed span
return [{ return [{
type: "element", type: "element",
tag: "sub", tag: "sub",

View File

@ -36,10 +36,10 @@ exports.parse = function() {
// Move past the match // Move past the match
this.parser.pos = this.matchRegExp.lastIndex; this.parser.pos = this.matchRegExp.lastIndex;
// Parse the run including the terminator // Parse the run including the terminator
var tree = this.parser.parseInlineRun(/\^\^/mg,{eatTerminator: true}); var tree = this.parser.parseInlineRun(/\^\^/mg,{eatTerminator: true});
// Return the classed span // Return the classed span
return [{ return [{
type: "element", type: "element",
tag: "sup", tag: "sup",

View File

@ -36,10 +36,10 @@ exports.parse = function() {
// Move past the match // Move past the match
this.parser.pos = this.matchRegExp.lastIndex; this.parser.pos = this.matchRegExp.lastIndex;
// Parse the run including the terminator // Parse the run including the terminator
var tree = this.parser.parseInlineRun(/__/mg,{eatTerminator: true}); var tree = this.parser.parseInlineRun(/__/mg,{eatTerminator: true});
// Return the classed span // Return the classed span
return [{ return [{
type: "element", type: "element",
tag: "u", tag: "u",