django-html-validator icon indicating copy to clipboard operation
django-html-validator copied to clipboard

A tool to do validation of your HTML generated from your Django app.

Results 5 django-html-validator issues
Sort by recently updated
recently updated
newest added

Based on options from https://github.com/validator/validator/wiki/Service-%C2%BB-Common-params

I got some `Picked up JAVA_TOOL_OPTIONS:` errors in my results. Java prints this on stderr. This was also flagged in https://github.com/validator/validator/issues/979. This pull requests supports the output over stdout. Functionality...

The validator allows many options in the system call. For instance I see many warnings that are no errors. These can be ignored with the setting '--errors-only'. This pull request...

AFAIU `response['Content-Type'].startswith('text/html')` in `middleware.py` should be replaced with `'text/html' in response.get('Content-Type', '')`.

This project currently uses stdout to print or it writes to files in a certain directory. It would be much better to correctly integrate with properly configured logging.