Skip to content

Commit 421e30b

Browse files
vahpetrVFK
authored andcommitted
newline bugfix (#55)
1 parent 38e66fd commit 421e30b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/block.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ var Block = function (config, file, match) {
2121

2222
Block.prototype.build = function () {
2323
if (!this.replacements.length) {
24-
return this.config.keepUnassigned ? [this.originalContent] : [];
24+
return this.config.keepUnassigned ? [this.indent + this.originalContent.trim()] : [];
2525
}
2626

2727
// get the replacement strings and do replacements for extensions

0 commit comments

Comments
 (0)