SublimeLinter-html-tidy
This linter plugin for SublimeLinter provides an interface to tidy (either the html4 or html5 version). It will be used with files that have the βHTMLβ syntax.
Installation
SublimeLinter must be installed in order to use this plugin.
Please install via Package Control.
Before installing this plugin, you must ensure that tidy
or tidy5
are installed on your system. tidy5
will be used over tidy
if available.
-
Mac OS X β
tidy
comes preinstalled on recent versions of Mac OS X. You can install the html5 version by using Homebrew andbrew install tidy-html5
. -
Linux β You should be able to install tidy using the systemβs package manager.
-
Windows β Windows binaries are available for the html5 version.
In order for tidy
to be executed by SublimeLinter, you must ensure that its path is available to SublimeLinter.
Enable for HTML sub syntax
To enable html-tidy for another syntax edit the SublimeLinter user settings. This example should enable html-tidy for any html sub sytnax. For example, HTML (jinja2), HTML (Rails), HTML (ASP):
// SublimeLinter Settings - User
{
"linters": {
"htmltidy": {
"selector": "text.html"
},
}
}