Files
meteor/docs/client/packages/stylus.html
David Glasser 72731ddda0 Use jQuery to force all non-#internal links to use target=_blank.
Rewrite <a href> links to use Markdown syntax now that they don't need the <a
href> to get target=_blank.
2012-10-15 11:16:53 -07:00

23 lines
766 B
HTML

<template name="pkg_stylus">
{{#better_markdown}}
## `stylus`
Stylus is a CSS pre-processor with a simple syntax and expressive
dynamic behavior. It allows for more compact stylesheets and
helps reduce code duplication in CSS files.
With the `stylus` package installed, `.styl` files in your application are
automatically compiled to CSS and the results are included in the client
CSS bundle.
The `stylus` package also includes `nib` support. Add `@import 'nib'` to
your `.styl` files to enable cross-browser mixins such as
`linear-gradient` and `border-radius`.
See <http://learnboost.github.com/stylus> for documentation of the Stylus
language, and <http://visionmedia.github.com/nib> for documentation of the nib
extensions.
{{/better_markdown}}
</template>