less-plugin-html
v1.0.1
Published
Parse LESS in HTML <style> tags
Maintainers
Readme
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-htmlUsage
lessc --html file.html