remove indent and CRLF for html strings
npm install gulp-rmindentationremove indent and CRLF for html strings.
Install package with NPM and add it to your development dependencies:
npm install --save-dev gulp-rmindentation
Htmlのインデントや改行で、不要なスペースができるのを解消します。
行頭の半角スペース、全角スペース、タブ文字、および行末の改行を削除します。
``html`
`
↓html`
| Package | gulp-rmindent |
| Description | remove indent and CRLF for html strings |
`js
var rmindentation = require('gulp-rmindentation');
gulp.task('scripts', function() {
return gulp.src('./src/*.html')
.pipe(rmindentation())
.pipe(gulp.dest('./dist/'));
});
``