Skip to content
gulp plugin for HTML validation, using vnu.jar
JavaScript HTML
Branch: master
Clone or download
dependabot and XhmikosR Bump lodash from 4.17.11 to 4.17.14 (#32)
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.11 to 4.17.14.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](lodash/lodash@4.17.11...4.17.14)

Signed-off-by: dependabot[bot] <support@github.com>
Latest commit 00f3401 Jul 11, 2019
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
test
.gitattributes ES6-ify, drop Node.js < 6 support, add xo. Jan 23, 2019
.gitignore ES6-ify, drop Node.js < 6 support, add xo. Jan 23, 2019
.travis.yml Travis: add Node.js 12 and use the `npm` cache alias. Jun 6, 2019
LICENSE ES6-ify, drop Node.js < 6 support, add xo. Jan 23, 2019
README.md ES6-ify, drop Node.js < 6 support, add xo. Jan 23, 2019
gulpfile.js Fix test task and run in parallel. Jan 23, 2019
index.js Remove merge dependency. Jan 23, 2019
package-lock.json Bump lodash from 4.17.11 to 4.17.14 (#32) Jul 11, 2019
package.json 0.7.0 Jun 9, 2019

README.md

gulp-html

Build Status dependencies Status devDependencies Status

gulp plugin for HTML validation, using the Nu Html Checker (v.Nu)

Install

Run npm install gulp-html -D.

Usage

const gulp = require('gulp');
const validator = require('gulp-html');

const html = () => {
  return gulp.src('src/index.html')
    .pipe(validator())
    .pipe(gulp.dest('dist/'));
};

Options

The options object supports the same options as the standard The Nu Markup Checker.

See also: https://validator.github.io/validator/#options

errors-only

  • Type: Boolean
  • Default: false

format

  • Type: String
  • Default: "gnu"

html

  • Type: Boolean
  • Default: false

no-stream

  • Type: Boolean
  • Default: false

verbose

  • Type: Boolean
  • Default: false

License

Copyright 2015 Daijiro Wachi

This software is released under the MIT License. See LICENSE.

You can’t perform that action at this time.