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

Sublime​Linter-html-tidy

by SublimeLinter ST3

SublimeLinter 3 plugin for html tidy.

Details

  • 3.0.1
    3.0.0
  • github.​com
  • github.​com
  • 4 months ago
  • 12 minutes ago
  • 12 years ago

Installs

  • Total 160K
  • Win 85K
  • Mac 53K
  • Linux 22K
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 Aug 14 Aug 13 Aug 12 Aug 11 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
Windows 1 3 5 2 2 2 1 1 0 1 2 6 2 0 5 5 1 2 4 0 0 0 3 1 4 1 4 0 4 4 2 0 2 3 0 1 2 2 1 2 0 0 3 4 3 2
Mac 0 1 1 1 1 0 0 2 0 0 1 4 0 0 3 2 5 2 1 1 0 2 0 3 1 2 0 0 2 1 3 1 1 3 0 1 2 0 1 1 0 0 4 0 2 0
Linux 0 1 0 0 0 0 3 2 1 1 1 0 1 2 1 2 0 2 1 0 0 0 1 0 0 1 1 0 1 0 1 3 1 4 0 0 0 0 0 0 0 0 0 1 4 2

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"
    },
  }
}