Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Theisen committed Apr 25, 2018
1 parent bbdf191 commit e4973ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/marked.js
Original file line number Diff line number Diff line change
Expand Up @@ -1311,11 +1311,11 @@ function merge(obj) {
}

function splitCells(tableRow) {
var cells = tableRow.replace(/([^\\])\|/g, "$1 |").split(/ +\| */),
var cells = tableRow.replace(/([^\\])\|/g, '$1 |').split(/ +\| */),
i = 0;

for (; i < cells.length; i++) {
cells[i] = cells[i].replace(/\\\|/g, "|");
cells[i] = cells[i].replace(/\\\|/g, '|');
}
return cells;
}
Expand Down

0 comments on commit e4973ed

Please sign in to comment.