SublimeLinter-html-tidy
SublimeLinter 3 plugin for html tidy.
Details
Installs
- Total 159K
- Win 84K
- Mac 53K
- Linux 22K
May 28 | May 27 | May 26 | May 25 | May 24 | May 23 | May 22 | May 21 | May 20 | May 19 | May 18 | May 17 | May 16 | May 15 | May 14 | May 13 | May 12 | May 11 | May 10 | May 9 | May 8 | May 7 | May 6 | May 5 | May 4 | May 3 | May 2 | May 1 | Apr 30 | Apr 29 | Apr 28 | Apr 27 | Apr 26 | Apr 25 | Apr 24 | Apr 23 | Apr 22 | Apr 21 | Apr 20 | Apr 19 | Apr 18 | Apr 17 | Apr 16 | Apr 15 | Apr 14 | Apr 13 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 4 | 0 | 0 | 1 | 1 | 3 | 6 | 0 | 0 | 0 | 0 | 3 | 1 | 2 | 3 | 0 | 0 | 1 | 8 | 5 | 5 | 2 | 2 | 2 | 0 | 0 | 2 | 1 | 1 | 1 | 5 | 1 | 2 | 8 | 6 | 7 | 0 | 1 | 0 | 1 | 3 | 0 | 4 | 4 | 3 |
Mac | 1 | 3 | 1 | 0 | 0 | 1 | 2 | 1 | 0 | 2 | 1 | 0 | 2 | 2 | 0 | 1 | 1 | 2 | 2 | 3 | 3 | 2 | 1 | 2 | 1 | 0 | 1 | 1 | 1 | 1 | 1 | 1 | 0 | 0 | 2 | 0 | 2 | 2 | 0 | 0 | 6 | 1 | 1 | 3 | 4 | 1 |
Linux | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 3 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 2 | 3 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 2 | 1 | 2 | 1 | 2 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 |
Readme
- Source
- raw.githubusercontent.com
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"
},
}
}