summaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
authorGerman M. Bravo <german.mb@deipi.com>2011-02-17 20:35:06 -0600
committerGerman M. Bravo <german.mb@deipi.com>2011-02-17 20:35:06 -0600
commite2982ad2b6b08a8c1e6deacf25bb7b9f7c1aeb87 (patch)
treee09ad3adb706d4fdcb163f9cf3b9d56001327f1a /README.rst
parent54d0be90633589220347260eee8732453b2ff96e (diff)
downloadpyscss-e2982ad2b6b08a8c1e6deacf25bb7b9f7c1aeb87.tar.gz
Documentation updated
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst29
1 files changed, 14 insertions, 15 deletions
diff --git a/README.rst b/README.rst
index 1081267..51bd32a 100644
--- a/README.rst
+++ b/README.rst
@@ -34,28 +34,27 @@ Benchmarks
Support
========
- pyScss has most of the funcitonality in Sass 3.2, it supports:
+pyScss has most of the funcitonality in Sass 3.2, it supports:
- * Nested rules
- * Inheritance (@extend)
- * Mixins (@mixin)
- * Mixin includes (@include)
- * Functions (@function, @return)
- * Conditions (@if, @else if, @else)
- * Loops (@for, @each)
- * Variables ($, @variables, @vars)
+ * Nested rules
+ * Inheritance (@extend)
+ * Mixins (@mixin, @include)
+ * Functions (@function, @return)
+ * Conditions (@if, @else if, @else)
+ * Loops (@for, @each)
+ * Variables ($, @variables, @vars)
Usage
=====
- Usage example::
+Usage example::
- from scss import Scss
- css = Scss()
- css.compile("a { color: red + green; }")
+ from scss import Scss
+ css = Scss()
+ css.compile("a { color: red + green; }")
- Or compile from the command line::
+Or compile from the command line::
- python scss.py < file.scss
+ python scss.py < file.scss
Examples
========