ericbeland / html_validation

HTML Validation done locally with HTML Tidy.
MIT License
34 stars 4 forks source link

Don't force /usr/bin/tidy, use the PATH, Luke #1

Closed swrobel closed 11 years ago

swrobel commented 11 years ago

First of all, this is amazing. I was looking to implement valid HTML5 checking in my test suite and you solved that for me, so bravo.

However, I was dismayed to find out that the HTML5 version of tidy that I'd installed via homebrew was being ignored in favor of the ancient version installed by MacOS in /usr/bin because hmtl_validation wasn't respecting my path. I have my path set up this way for a reason, as I imagine most good devs do :) Please respect the path. That is all.

ericbeland commented 11 years ago

Hi Stefan,

I agree--the right way to do it is to respect the path. I have a similar fix that also fixes windows support (which was broken), so I'll update the gem with that in the next day or so once I test it out. Thanks and glad you like it!

swrobel commented 11 years ago

Awesome, thanks!

swrobel commented 11 years ago

any progress here?