Commit 3278ef36 by Andrew Nesbitt

Readme tweaks

parent 0a5a7073
...@@ -2,15 +2,13 @@ ...@@ -2,15 +2,13 @@
Node bindings to libsass Node bindings to libsass
*work in progress*
## Install ## Install
npm install npm install
## Usage ## Usage
var sass = require('./sass'); var sass = require('sass');
sass.render('body{background:blue; a{color:black;}}', function(err, css){ sass.render('body{background:blue; a{color:black;}}', function(err, css){
console.log(css) console.log(css)
}); });
...@@ -34,5 +32,5 @@ Heavily inspired by <https://github.com/LearnBoost/stylus> ...@@ -34,5 +32,5 @@ Heavily inspired by <https://github.com/LearnBoost/stylus>
* sass compression options * sass compression options
* publish npm * publish npm
* file context * file context?
* folder context * folder context?
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment