All Projects → validator → gulp-html

validator / gulp-html

Licence: MIT license
Gulp plugin for HTML validation, using the official Nu Html Checker (v.Nu)

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to gulp-html

Webmention.rocks
a webmention validator and test suite
Stars: ✭ 11 (-84.29%)
Mutual labels:  w3c, validator
Gtfs Validator
Canonical GTFS Validator project for schedule (static) files from a zip archive
Stars: ✭ 34 (-51.43%)
Mutual labels:  validator, jar
spec-prod
GitHub Action to build ReSpec/Bikeshed specs, validate output and publish to GitHub pages or W3C
Stars: ✭ 19 (-72.86%)
Mutual labels:  w3c, validator
Stylelint Validator
Stylelint plugin to validate CSS syntax
Stars: ✭ 64 (-8.57%)
Mutual labels:  w3c, validator
node-w3c-validator
Wrapper for The Nu Html Checker (v.Nu)
Stars: ✭ 28 (-60%)
Mutual labels:  vnu, w3c-validator
gulp-iife
A Gulp plugin for wrapping JavaScript code in IIFEs.
Stars: ✭ 39 (-44.29%)
Mutual labels:  gulp-plugin, gulp-plugins
Unicorn
Unicorn - W3C's Unified Validator
Stars: ✭ 70 (+0%)
Mutual labels:  w3c, validator
gulp-yaml
A Gulp plugin to convert YAML to JSON
Stars: ✭ 24 (-65.71%)
Mutual labels:  gulp-plugin, gulpplugin
rust-phonenumber
Library for parsing, formatting and validating international phone numbers.
Stars: ✭ 99 (+41.43%)
Mutual labels:  validator
resource-loader
Getting files out of a JAR or loading a shared library is difficult. We made it easy.
Stars: ✭ 15 (-78.57%)
Mutual labels:  jar
gulp-sort
Sort files in stream by path or any custom sort comparator
Stars: ✭ 22 (-68.57%)
Mutual labels:  gulp-plugin
PocList
Alibaba-Nacos-Unauthorized/ApacheDruid-RCE_CVE-2021-25646/MS-Exchange-SSRF-CVE-2021-26885/Oracle-WebLogic-CVE-2021-2109_RCE/RG-CNVD-2021-14536/RJ-SSL-VPN-UltraVires/Redis-Unauthorized-RCE/TDOA-V11.7-GetOnlineCookie/VMware-vCenter-GetAnyFile/yongyou-GRP-U8-XXE/Oracle-WebLogic-CVE-2020-14883/Oracle-WebLogic-CVE-2020-14882/Apache-Solr-GetAnyFile/F5…
Stars: ✭ 1,004 (+1334.29%)
Mutual labels:  jar
finspec-spec
Multi-protocol, machine-readable specifications for financial services
Stars: ✭ 18 (-74.29%)
Mutual labels:  validator
gulp-cssbeautify
Reindent and reformat CSS
Stars: ✭ 18 (-74.29%)
Mutual labels:  gulp-plugin
gulp-sitemap
Generate a search engine friendly sitemap.xml using a Gulp stream
Stars: ✭ 60 (-14.29%)
Mutual labels:  gulp-plugin
OLGA
an Ontology SDK
Stars: ✭ 36 (-48.57%)
Mutual labels:  w3c
gulp-xo
Validate files with XO
Stars: ✭ 37 (-47.14%)
Mutual labels:  gulp-plugin
okcandidate-v1
A platform for matching candidates with voters.
Stars: ✭ 16 (-77.14%)
Mutual labels:  official
GradleMavenPush
Helper to upload Gradle Android Artifacts, Gradle Java Artifacts and Gradle Kotlin Artifacts to Maven repositories (JCenter, Maven Central, Corporate staging/snapshot servers and local Maven repositories).
Stars: ✭ 21 (-70%)
Mutual labels:  jar
guice-validator
Guice javax.validation method validation integration
Stars: ✭ 35 (-50%)
Mutual labels:  validator

gulp-html

npm version Build 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 Nu Html 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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].