aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorache <ache@ache.one>2019-09-18 02:03:54 +0200
committerache <ache@ache.one>2019-09-18 02:03:54 +0200
commit0dadc79c639439f2d517ab3ad2cbf44dc62f21ff (patch)
tree5f0f53877c89e5c33e568d89da06499f474aae66
parentUpdate dependency (diff)
Update tests to the new behaviour
Related to trailing blank lines at the end of fenced blocks. I spaced a little the code too.
-rw-r--r--__tests__/index.js3
-rw-r--r--src/index.js4
2 files changed, 7 insertions, 0 deletions
diff --git a/__tests__/index.js b/__tests__/index.js
index cea2eea..f6d265e 100644
--- a/__tests__/index.js
+++ b/__tests__/index.js
@@ -154,6 +154,7 @@ This is an awesome code
`;
const {contents} = render(fencedCodeString);
t.deepEqual(parse(contents), parse(`<pre><code class="language-lang" info="string">This is an awesome code
+
</code></pre>`));
});
@@ -165,6 +166,7 @@ This is an awesome code
`;
const {contents} = render(fencedCodeString);
t.deepEqual(parse(contents), parse(`<pre><code class="language-lang" info="string">This is an awesome code
+
</code></pre>`));
});
@@ -176,6 +178,7 @@ This is an awesome code
`;
const {contents} = render(fencedCodeString);
t.deepEqual(parse(contents), parse(`<pre><code class="language-lang" info="string">This is an awesome code
+
</code></pre>`));
});
diff --git a/src/index.js b/src/index.js
index 2e839e8..6b8a9de 100644
--- a/src/index.js
+++ b/src/index.js
@@ -79,11 +79,13 @@ function tokenizeGenerator(prefix, oldParser, config) {
}
}
}
+
eaten = eat(prefix + parsedAttr.eaten)(eaten);
}
return eaten;
}
+
// Return the new tokenizer function
return token;
}
@@ -130,6 +132,7 @@ function filterAttributes(prop, config, type) {
} else {
inScope = x => !isDangerous(x);
}
+
break;
case 'extended':
default:
@@ -206,6 +209,7 @@ function tokenizeFencedCode(oldParser, config) {
}
}
}
+
if (parsedByCustomAttr) {
eaten = eat(prefix + parsedAttr.eaten)(eaten);
}