Popularity
5.7
Growing
Activity
0.0
Stable
7
6
1

Monthly Downloads: 16
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: Web     HTML    
Latest version: v0.1.0.5

html-validator-cli alternatives and similar packages

Based on the "HTML" category.
Alternatively, view html-validator-cli alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of html-validator-cli or a related project?

Add another 'HTML' Package

README

html-validator-cli CircleCI

Command Line Interface for The W3C Markup Validation Service

$ cat /var/www/html/index.html
<!DOCTYPE html>
<html>
    <body>Hello, Validator!</body>
</html>

$ validatehtml /var/www/html/index.html
[ERROR] The character encoding was not declared. Proceeding using “windows-1252”.

[ERROR] Element “head” is missing a required instance of child element “title”.
From line 2, column 7; to line 3, column 10
ml> <html>     <body>Hello,
          ^^^^^^^^^^^

[WARNING] Consider adding a “lang” attribute to the “html” start tag to declare the language of this document.
From line 1, column 16; to line 2, column 6
TYPE html> <html>     <
          ^^^^^^^

Installation

Prerequisites

Make sure you have a fresh version of Stack or Cabal installed.

Installation

stack update
stack install html-validator-cli

or

cabal update
cabal install html-validator-cli

Usage

Usage: validatehtml [-s URL] [-x DIR] FILE | DIR ...
  -s URL  --validator-url=URL  validation service url (default: https://validator.w3.org/nu/)
  -x DIR  --exclude=DIR        exclude files in DIR
  -1      --oneline            print each message on one line
  • FILE | DIR ...
    • Specify one or more HTML files to validate. When a directory is specified, all HTML files under that will be checked.
  • -s URL, --validator-url=URL
  • -x DIR, --exclude=DIR
    • Specify the folder name that you want to exclude from checking.
  • -1, --oneline
    • Specify it if you want to print the validation result in compact format.

License

Copyright (c) IIJ Innovation Institute Inc.

Licensed under The 3-Clause BSD License.


*Note that all licence references and agreements mentioned in the html-validator-cli README section above are relevant to that project's source code only.