ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Sublime​Linter-html-tidy

by SublimeLinter ST3

SublimeLinter 3 plugin for html tidy.

Details

Installs

  • Total 157K
  • Win 83K
  • Mac 52K
  • Linux 22K
Sep 29 Sep 28 Sep 27 Sep 26 Sep 25 Sep 24 Sep 23 Sep 22 Sep 21 Sep 20 Sep 19 Sep 18 Sep 17 Sep 16 Sep 15 Sep 14 Sep 13 Sep 12 Sep 11 Sep 10 Sep 9 Sep 8 Sep 7 Sep 6 Sep 5 Sep 4 Sep 3 Sep 2 Sep 1 Aug 31 Aug 30 Aug 29 Aug 28 Aug 27 Aug 26 Aug 25 Aug 24 Aug 23 Aug 22 Aug 21 Aug 20 Aug 19 Aug 18 Aug 17 Aug 16 Aug 15
Windows 1 5 5 5 1 3 2 3 1 4 3 2 4 0 3 4 2 3 7 4 1 8 4 9 5 4 5 3 2 5 3 9 1 2 1 7 8 5 3 3 5 3 4 6 7 5
Mac 1 0 1 5 3 1 0 0 7 4 1 3 1 3 1 1 2 0 2 2 1 3 1 2 0 1 0 1 4 0 4 3 1 0 0 0 4 4 3 4 2 1 1 4 8 4
Linux 1 1 1 1 2 3 0 1 0 2 1 2 0 2 0 0 1 1 2 2 0 0 1 2 1 1 0 0 2 2 3 2 3 1 1 2 0 1 0 0 1 1 2 0 3 1

Readme

Source
raw.​githubusercontent.​com

SublimeLinter-html-tidy

Build Status

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 Xtidy comes preinstalled on recent versions of Mac OS X. You can install the html5 version by using Homebrew and brew 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"
    },
  }
}