jekyll-compass 0.2 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +21 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d93609ebf6e64e59366da721574af95ec2006cad
|
4
|
+
data.tar.gz: 666426f2543bab3764d4145cc51661f16fc4a326
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 034f87ad90df979c6c1f1174268c634ae4d070c0ea556f02d5e98971e9a0f798514e2f83592a2fb105dd48137f49a37c8228b578c9894a65adce3f87060b153e
|
7
|
+
data.tar.gz: fac5293a83e1b23269d420b9c34167842f03586b7dc38e4bdd4e37505a0ef3f550a03d9e6676940b17872888ede1abcee27dd4e6ccecafda7df344849345371d
|
data/README.md
CHANGED
@@ -35,6 +35,27 @@ Usage
|
|
35
35
|
Simply setup your SASS files in the `_sass` folder in your websites root folder. Then run `jekyll build` and watch the
|
36
36
|
magic.
|
37
37
|
|
38
|
+
Configuration
|
39
|
+
-------------
|
40
|
+
|
41
|
+
You may add a file to your `_data` folder called `compass.yml`. This will contain overrides for the compass
|
42
|
+
configuration, similar to the `config.rb` in a regular compass project. Any of the
|
43
|
+
[regular configuration properties][compass-props] should be supported via the YAML file.
|
44
|
+
|
45
|
+
Compass also provides a way to pass through options directly to Sass via the `sass_options` option. You can find
|
46
|
+
details of what options are available from Sass in the [Sass Reference][sass-props].
|
47
|
+
|
48
|
+
An example configuration file might look like the following:
|
49
|
+
|
50
|
+
output_style: compact
|
51
|
+
sass_options:
|
52
|
+
unix_newlines: true
|
53
|
+
|
54
|
+
|
55
|
+
|
38
56
|
[license]: https://raw.github.com/mscharley/jekyll-compass/master/LICENSE
|
39
57
|
[gh-contrib]: https://github.com/mscharley/jekyll-compass/graphs/contributors
|
40
58
|
[gh-issues]: https://github.com/mscharley/jekyll-compass/issues
|
59
|
+
|
60
|
+
[compass-props]: http://compass-style.org/help/tutorials/configuration-reference/
|
61
|
+
[sass-props]: http://sass-lang.com/documentation/file.SASS_REFERENCE.html#options
|