Skip to content

SublimeLinter/SublimeLinter-html-tidy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

57 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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