<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -2,6 +2,16 @@ LESS
 ====
 It's time CSS was done right &#8211; LESS is _leaner_ css.
 
+Setup
+------
+to get the latest development version:
+    
+    sudo gem install less -s http://gemcutter.org
+
+to get the latest stable version:
+
+    sudo gem install less
+
 Explained
 ---------
 LESS allows you to write CSS the way (I think) it was meant to, that is: with *variables*, *nested rules* and *mixins*!
@@ -9,22 +19,21 @@ LESS allows you to write CSS the way (I think) it was meant to, that is: with *v
 ### Here's some example LESS code:
 	
 	@dark: #110011;
-	.outline { border: 1px solid black }
+	.outline (@width: 1) { border: (@width * 10px) solid black }
 	
 	.article {
 		a { text-decoration: none }
 		p { color: @dark }
-		.outline;
+		.outline(3);
 	}
 	
 ### And the CSS output it produces:
 	
-	.outline { border: 1px solid black }
 	.article a { text-decoration: none }
 	.article p { color: #110011 }
-	.article { border: 1px solid black }
+	.article { border: 30px solid black }
 	
-If you have CSS nightmares, just 
+If you have CSS nightmares, just
 	$ lessc style.less
 
 For more information, see you at [http://lesscss.org]</diff>
      <filename>README.md</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>a5c13291ed783723855b23f3e3ee447b977dd290</id>
    </parent>
  </parents>
  <author>
    <name>cloudhead</name>
    <email>self@cloudhead.net</email>
  </author>
  <url>http://github.com/cloudhead/less/commit/a5746e276f4225e51b7d8935fdc8d75d3de35a5c</url>
  <id>a5746e276f4225e51b7d8935fdc8d75d3de35a5c</id>
  <committed-date>2009-10-12T13:20:54-07:00</committed-date>
  <authored-date>2009-10-12T13:20:54-07:00</authored-date>
  <message>updated README</message>
  <tree>e377c71ea8013f64ece6afcafe4451f07bea5ca6</tree>
  <committer>
    <name>cloudhead</name>
    <email>self@cloudhead.net</email>
  </committer>
</commit>
