mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-24 02:27:19 +00:00
fixed whitespace
This commit is contained in:
parent
7aa6c7c06d
commit
95f6c92192
@ -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",
|
||||
|
@ -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",
|
||||
|
@ -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",
|
||||
|
@ -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",
|
||||
|
@ -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",
|
||||
|
@ -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",
|
||||
|
Loading…
Reference in New Issue
Block a user