You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Readme.md
+12-12Lines changed: 12 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
Libsass
1
+
LibSass
2
2
=======
3
3
4
4
by Aaron Leung ([@akhleung]) and Hampton Catlin ([@hcatlin])
@@ -11,7 +11,7 @@ by Aaron Leung ([@akhleung]) and Hampton Catlin ([@hcatlin])
11
11
12
12
https://github.com/sass/libsass
13
13
14
-
Libsass is just a library, but if you want to RUN libsass,
14
+
LibSass is just a library, but if you want to RUN LibSass,
15
15
then go to https://github.com/sass/sassc or
16
16
https://github.com/sass/ruby-libsass or
17
17
[find your local implementer](https://github.com/sass/libsass/wiki/Implementations).
@@ -23,19 +23,19 @@ On Windows, you need MinGW with GCC 4.6+ or VS 2013 Update 4+. It is also possib
23
23
About
24
24
-----
25
25
26
-
Libsass is a C/C++ port of the Sass CSS precompiler. The original version was written in Ruby, but this version is meant for efficiency and portability.
26
+
LibSass is a C/C++ port of the Sass CSS precompiler. The original version was written in Ruby, but this version is meant for efficiency and portability.
27
27
28
28
This library strives to be light, simple, and easy to build and integrate with a variety of platforms and languages.
29
29
30
30
Developing
31
31
----------
32
32
33
-
As you may have noticed, the libsass repo itself has
33
+
As you may have noticed, the LibSass repo itself has
34
34
no executables and no tests. Oh noes! How can you develop???
35
35
36
36
Well, luckily, SassC is the official binary wrapper for
37
-
libsass and is *always* kept in sync. SassC uses a git submodule
38
-
to include libsass. When developing libsass, its best to actually
37
+
LibSass and is *always* kept in sync. SassC uses a git submodule
38
+
to include LibSass. When developing LibSass, its best to actually
39
39
check out SassC and develop in that directory with the SassC spec
40
40
and tests there.
41
41
@@ -44,21 +44,21 @@ We even run Travis tests for SassC!
44
44
Tests
45
45
-------
46
46
47
-
Since libsass is a pure library, tests are run through the [SassSpec](https://github.com/sass/sass-spec) project using the [SassC](http://github.com/sass/sassc) driver.
47
+
Since LibSass is a pure library, tests are run through the [SassSpec](https://github.com/sass/sass-spec) project using the [SassC](http://github.com/sass/sassc) driver.
48
48
49
-
To run tests against libsass while developing, you can run `./script/spec`. This will clone SassC and Sass-Spec under the project folder and then run the Sass-Spec test suite. You may want to update the clones to ensure you have the latest version.
49
+
To run tests against LibSass while developing, you can run `./script/spec`. This will clone SassC and Sass-Spec under the project folder and then run the Sass-Spec test suite. You may want to update the clones to ensure you have the latest version.
50
50
51
51
Library Usage
52
52
-------------
53
53
54
-
While libsass is a library primarily written in C++, it provides a simple
55
-
C interface which should be used by most implementers. Libsass does not do
54
+
While LibSass is a library primarily written in C++, it provides a simple
55
+
C interface which should be used by most implementers. LibSass does not do
56
56
much on its own without an implementer. This can be a command line tool, like
57
57
[sassc](https://github.com/sass/sassc) or a [binding](https://github.com/sass/libsass/wiki/Implementations)
58
58
to your favorite programing language.
59
59
60
-
If you want to build or interface with libsass, we recommend to check out the
61
-
wiki pages about [building libsass](https://github.com/sass/libsass/wiki/Building-Libsass) and
60
+
If you want to build or interface with LibSass, we recommend to check out the
61
+
wiki pages about [building LibSass](https://github.com/sass/libsass/wiki/building-libsass) and
62
62
the [C-API documentation](https://github.com/sass/libsass/wiki/API-Documentation).
0 commit comments