I have a project containing several HTML files. As part of my Maven build process, I would like to run a validator in these files to make sure that:
- Files are syntactically correct (e.g. checking that all opening tags have an appropriate closing tag)
- Files comply with encoding guidelines
Can someone recommend a good validator to do this?
source
share