Command scripts are finally identical between the Node and Jekyll web server
This commit is contained in:
parent
25af103509
commit
da186dd540
1 changed files with 1 additions and 1 deletions
|
|
@ -534,7 +534,7 @@ MarkOut.prototype.convertMD = function(sIndent)
|
|||
* command lines, followed by the second command name, followed by one or more command lines, and so on.
|
||||
*/
|
||||
for (var iCommand = 1; iCommand < aCommands.length; iCommand += 2) {
|
||||
this.aCommandDefs[aCommands[iCommand]] = aCommands[iCommand+1].trim().replace(/\n[ \t]*/g, "").replace(/"/g, """);
|
||||
this.aCommandDefs[aCommands[iCommand]] = aCommands[iCommand+1].replace(/\n[ \t]*/g, " ").trim().replace(/"/g, """);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue