Files
meteor/docs/client/packages/less.html
Avital Oliver 5671eaa2b7 Merge branch 'devel' into shark
Conflicts:
	packages/minifiers/package.js
	packages/preserve-inputs/package.js
	packages/test-in-browser/driver.css
	packages/test-in-browser/driver.js
2014-02-25 15:50:36 -08:00

20 lines
583 B
HTML

<template name="pkg_less">
{{#markdown}}
## `less`
[LESS](http://lesscss.org/) extends CSS with dynamic behavior such as variables, mixins,
operations and functions. It allows for more compact stylesheets and
helps reduce code duplication in CSS files.
With the `less` package installed, `.less` files in your application are
automatically compiled to CSS and the results are included in the client CSS
bundle.
{{#note}}
If you want to `@import` a file, give it the extension `.import.less`
to prevent Meteor from processing it independently.
{{/note}}
{{/markdown}}
</template>