gulp-html-accents
v3.4.1
Published
Replace accents for HTML Entities.
Downloads
36
Maintainers
Readme
gulp-html-accents
Encodes accents and other diacritics to HTML Entities using he
.
<p>Olá, tudo bem com você?</p>
encodes to
<p>Olá, tudo bem com você?</p>
Usage
Like any other gulp plugin.
const gulp = require('gulp');
const accents = require('gulp-html-accents');
gulp.task('process:html', () => {
gulp.src('./src/index.html')
.pipe(accents(/* he.encode options */))
.pipe(gulp.dest('./dist'));
});
Options
gulp-html-accents
can, optionally, receives he.encode
options as argument.