1.0.1 • Published 8 years ago

less-plugin-html v1.0.1

Weekly downloads
2
License
ISC
Repository
github
Last release
8 years ago

LESS HTML Plugin

Parse LESS on HTML files containing <style type=text/less> tags.

Example:

<!doctype html>
<title>LESS HTML Plugin test</title>
<body>
<style type=text/less>
  body {
    color: darken(red, 50%;
    p {
      color: white;
    }
  }
</style>
<p>It works!</p>

You now should get a warning about the missing parenthesis on line 6.

Note: the attribute type=text/less is necessary to correctly parse the tag contents.

Installation

npm install -g less-plugin-html

Usage

lessc --html file.html