1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-11-23 18:17:20 +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
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});
// Return the classed span
// Return the classed span
return [{
type: "element",
tag: "strong",

View File

@ -36,10 +36,10 @@ exports.parse = function() {
// Move past the match
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});
// Return the classed span
// Return the classed span
return [{
type: "element",
tag: "em",

View File

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

View File

@ -36,10 +36,10 @@ exports.parse = function() {
// Move past the match
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});
// Return the classed span
// Return the classed span
return [{
type: "element",
tag: "sub",

View File

@ -36,10 +36,10 @@ exports.parse = function() {
// Move past the match
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});
// Return the classed span
// Return the classed span
return [{
type: "element",
tag: "sup",

View File

@ -36,10 +36,10 @@ exports.parse = function() {
// Move past the match
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});
// Return the classed span
// Return the classed span
return [{
type: "element",
tag: "u",