We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d634beb commit d855e31Copy full SHA for d855e31
from-markdown.js
@@ -13,7 +13,7 @@ module.exports = configure([
13
])
14
15
function configure(extensions) {
16
- var config = {canContainEols: []}
+ var config = {transforms: [], canContainEols: []}
17
var length = extensions.length
18
var index = -1
19
@@ -33,7 +33,7 @@ function extension(config, extension) {
33
left = own.call(config, key) ? config[key] : (config[key] = {})
34
right = extension[key]
35
36
- if (key === 'canContainEols') {
+ if (key === 'canContainEols' || key === 'transforms') {
37
config[key] = [].concat(left, right)
38
} else {
39
Object.assign(left, right)
0 commit comments