From 6f345edbcfbf2770ccdfb70c2a157eaf0e2930dd Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Fri, 9 Jan 2015 21:38:41 -0800 Subject: Improved newline parsing efficiency. Don't check for `\n` when we know we have one. Gobble spaces after line break. --- js/lib/blocks.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'js/lib/blocks.js') diff --git a/js/lib/blocks.js b/js/lib/blocks.js index f948e8b..f965fd7 100644 --- a/js/lib/blocks.js +++ b/js/lib/blocks.js @@ -552,8 +552,7 @@ var finalize = function(block, line_number) { switch (block.t) { case 'Paragraph': - block.string_content = block.strings.join('\n').replace(/^ {2,}/m, ''); - // delete block.strings; + block.string_content = block.strings.join('\n'); // try parsing the beginning as link reference definitions: while (block.string_content.charCodeAt(0) === C_OPEN_BRACKET && -- cgit v1.2.3