aboutsummaryrefslogtreecommitdiff
path: root/app.js
diff options
context:
space:
mode:
authorache <ache@ache.one>2018-04-29 11:17:34 +0200
committerache <ache@ache.one>2018-04-29 11:17:34 +0200
commita2b8fe9f8bddf59def0bcadcec896b0a55ac8513 (patch)
treeeed94a3fa41897a34f07d0163327876c55d610b6 /app.js
parentFix bugs and tests (diff)
Fix eatten value with md-attr-parser
Diffstat (limited to 'app.js')
-rw-r--r--app.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app.js b/app.js
index fdf3d23..9be7853 100644
--- a/app.js
+++ b/app.js
@@ -34,7 +34,7 @@ function plugin() {
if (end !== value.match(START)[0].length) {
end -= 1;
}
- const t = eat(value.slice(0, value.match(END)[0].lenght) + eaten)({
+ const t = eat(value.slice(0, value.search(END) + value.match(END)[0].length) + eaten)({
type: 'textarea',
data: {
hName: 'TEXTAREA',