SublimeLinter-html-tidy
SublimeLinter 3 plugin for html tidy.
Details
Installs
- Total 153K
- Win 81K
- Mac 51K
- Linux 21K
Aug 10 | Aug 9 | Aug 8 | Aug 7 | Aug 6 | Aug 5 | Aug 4 | Aug 3 | Aug 2 | Aug 1 | Jul 31 | Jul 30 | Jul 29 | Jul 28 | Jul 27 | Jul 26 | Jul 25 | Jul 24 | Jul 23 | Jul 22 | Jul 21 | Jul 20 | Jul 19 | Jul 18 | Jul 17 | Jul 16 | Jul 15 | Jul 14 | Jul 13 | Jul 12 | Jul 11 | Jul 10 | Jul 9 | Jul 8 | Jul 7 | Jul 6 | Jul 5 | Jul 4 | Jul 3 | Jul 2 | Jul 1 | Jun 30 | Jun 29 | Jun 28 | Jun 27 | Jun 26 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 2 | 6 | 5 | 3 | 2 | 8 | 7 | 15 | 5 | 3 | 1 | 5 | 7 | 11 | 5 | 6 | 5 | 2 | 1 | 4 | 10 | 4 | 8 | 10 | 3 | 2 | 8 | 6 | 3 | 5 | 5 | 3 | 7 | 10 | 12 | 13 | 7 | 8 | 8 | 6 | 9 | 6 | 7 | 12 | 5 | 7 |
Mac | 1 | 0 | 7 | 0 | 3 | 4 | 1 | 4 | 3 | 2 | 3 | 0 | 0 | 0 | 4 | 3 | 2 | 2 | 4 | 0 | 2 | 7 | 7 | 1 | 1 | 2 | 2 | 3 | 1 | 5 | 2 | 1 | 1 | 2 | 3 | 2 | 4 | 1 | 1 | 2 | 2 | 6 | 7 | 3 | 7 | 0 |
Linux | 1 | 2 | 1 | 0 | 1 | 4 | 3 | 2 | 7 | 2 | 1 | 1 | 3 | 1 | 1 | 1 | 1 | 6 | 5 | 3 | 2 | 4 | 2 | 0 | 2 | 0 | 0 | 4 | 3 | 2 | 3 | 2 | 1 | 2 | 1 | 2 | 0 | 3 | 1 | 2 | 1 | 2 | 2 | 1 | 1 | 2 |
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"
},
}
}