Skip to content

Commit 5b04d6d

Browse files
committed
feat(core): pass normalizeBlankLines option through to block-transformer
1 parent bde5038 commit 5b04d6d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

packages/core/src/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,7 @@ async function markdownMagic(globOrOpts = {}, options = {}) {
153153
const outputDir = output.directory || opts.outputDir
154154
const removeComments = output.removeComments || false
155155
const forceRemoveComments = output.forceRemoveComments || false
156+
const normalizeBlankLines = output.normalizeBlankLines || false
156157
const pathFormatter = output.pathFormatter
157158

158159
let applyTransformsToSource = true
@@ -431,6 +432,7 @@ async function markdownMagic(globOrOpts = {}, options = {}) {
431432
transforms: useTransforms,
432433
removeComments,
433434
forceRemoveComments,
435+
normalizeBlankLines,
434436
processedFiles
435437
})
436438

0 commit comments

Comments
 (0)