summaryrefslogtreecommitdiff
path: root/js/lib/inlines.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/lib/inlines.js')
-rw-r--r--js/lib/inlines.js25
1 files changed, 11 insertions, 14 deletions
diff --git a/js/lib/inlines.js b/js/lib/inlines.js
index adeac6c..f27a7e7 100644
--- a/js/lib/inlines.js
+++ b/js/lib/inlines.js
@@ -672,23 +672,20 @@ var parseString = function(block) {
// line break; otherwise a soft line break.
var parseNewline = function(block) {
"use strict";
- var m = this.match(/^\n/);
- if (m) {
- // check previous node for trailing spaces
- var lastc = block.lastChild;
- if (lastc && lastc.t === 'Text') {
- var sps = / *$/.exec(lastc.literal)[0].length;
- if (sps > 0) {
- lastc.literal = lastc.literal.replace(/ *$/,'');
- }
- block.appendChild(new Node(sps >= 2 ? 'Hardbreak' : 'Softbreak'));
- } else {
- block.appendChild(new Node('Softbreak'));
+ this.pos += 1; // assume we're at a \n
+ // check previous node for trailing spaces
+ var lastc = block.lastChild;
+ if (lastc && lastc.t === 'Text') {
+ var sps = / *$/.exec(lastc.literal)[0].length;
+ if (sps > 0) {
+ lastc.literal = lastc.literal.replace(/ *$/,'');
}
- return true;
+ block.appendChild(new Node(sps >= 2 ? 'Hardbreak' : 'Softbreak'));
} else {
- return false;
+ block.appendChild(new Node('Softbreak'));
}
+ this.match(/^ */); // gobble leading spaces in next line
+ return true;
};
// Attempt to parse a link reference, modifying refmap.