fixed whitespace

print-window-tiddler
Mario Pietsch 2014-07-24 23:47:13 +02:00
rodzic 7aa6c7c06d
commit 95f6c92192
6 zmienionych plików z 11 dodań i 11 usunięć

Wyświetl plik

@ -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",

Wyświetl plik

@ -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",

Wyświetl plik

@ -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",

Wyświetl plik

@ -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",

Wyświetl plik

@ -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",

Wyświetl plik

@ -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",