svenkreiss / html5validator

Command line tool to validate HTML5 files. Great for continuous integration.
MIT License
323 stars 34 forks source link

Order java cli arguments in validate #38

Closed wrCisco closed 6 years ago

wrCisco commented 6 years ago

Hi, I got an error using html5validator on Windows regarding the threads stack size, and solved it changing the order of the elements in the subprocess call inside the Validator's validate method (fundamentally, I had to put the "-Xss" option right after "java" and before the "-jar").

svenkreiss commented 6 years ago

Thanks!

svenkreiss commented 6 years ago

Now on pypi as version 0.2.9. I hope this is solved. Thanks again.

wrCisco commented 6 years ago

Just upgraded, all good now. Thank you for the script!