Cleaning up further coding style inconsistencies that have crept in

This commit is contained in:
Jermolene
2014-01-03 10:50:00 +00:00
parent 8fc5c1d4a0
commit 1a74e2538c
6 changed files with 8 additions and 8 deletions

View File

@@ -59,7 +59,7 @@ exports.parse = function() {
// before handling the cite, parse the body of the quote
var tree= this.parser.parseBlocks(reEndString);
// If we got a cite, put it before the text
if ( cite.length > 0 ) {
if(cite.length > 0) {
tree.unshift({
type: "element",
tag: "cite",
@@ -71,7 +71,7 @@ exports.parse = function() {
this.parser.skipWhitespace({treatNewlinesAsNonWhitespace: true});
var cite = this.parser.parseInlineRun(/(\r?\n)/mg);
// If we got a cite, push it
if ( cite.length > 0 ) {
if(cite.length > 0) {
tree.push({
type: "element",
tag: "cite",