From 4c691a8d364ff60c9e2969134d57d3d8bc043cc0 Mon Sep 17 00:00:00 2001 From: ache Date: Sun, 11 Feb 2018 22:35:55 +0100 Subject: Better parsing --- app.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app.js b/app.js index 279b554..a904757 100644 --- a/app.js +++ b/app.js @@ -1,7 +1,7 @@ 'use strict'; -const START = /^(\[_+)/g; -const END = /(_+])/g; +const START = /^(\[_+)\n/g; +const END = /\n(_+])/g; function locator(value, fromIndex) { const index = value.indexOf(START, fromIndex); @@ -172,7 +172,7 @@ function plugin() { return eat(value.slice(0, value.search(END)) + value.match(END)[0] + eaten)({ type: 'html', value: `` + - `${value.slice(value.match(START)[0].length + 1, value.search(END) - 1)}` + + `${value.slice(value.match(START)[0].length, value.search(END))}` '', /* -- cgit v1.2.3