1.0.3 • Published 3 years ago

gulp-webp-html-fix v1.0.3

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

gulp-webp-html-fix

Fix bugs Replace <img/> to <picture/> supports webp

npm (scoped) License

Install

npm i --save-dev gulp-webp-html-fix

Example

// Input
<img src="/img/tmp/catalogImage.jpg">

// Output
<picture>
    <source srcset="/img/tmp/catalogImage.webp" type="image/webp">
    <img src="/img/tmp/catalogImage.jpg">
</picture>

Usage

var webpHTML = require('gulp-webp-html');

gulp.task('html',function(){
    gulp.src('./assets/**/*.html')
        .pipe(webpHTML())
        .pipe(gulp.dest('./public/'))
});

Original

gulp-webp-html

Donate