Skip to content
This repository has been archived by the owner on Jun 26, 2018. It is now read-only.

Use LibSass name consistently #15

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en" > <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- For third-generation iPad with high-resolution Retina display: -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="images/appicons/apple-touch-icon-144x144-precomposed.png">
Expand All @@ -28,7 +28,7 @@
<div class="logo-wrap">
<div class="row">
<div class="large-12 columns">
<a href="./"><img id="logo" src="images/libsass-logo.png" alt="Libsass"></a>
<a href="./"><img id="logo" src="images/libsass-logo.png" alt="LibSass"></a>
</div>
</div>
</div>
Expand All @@ -51,17 +51,17 @@
</div>

<div class="row">
<div class="large-12 columns">
<section id="what">
<div class="large-12 columns">
<section id="what">
<h2>What?</h2>
<p><a href="http://sass-lang.com">Sass</a> is a pre-processing language for CSS. It allows you to write cleaner stylesheets and makes collaboration on your CSS a breeze. There's a ton of information on Sass out there, so we won't repeat it all here. Just make sure to check out <a href="http://sass-lang.com" target="_blank">the Sass site</a> for tutorials and examples.</p>
<p>Sass was originally written in Ruby. Ruby's great, but people started having a couple of issues. First, we want everyone to enjoy Sass, no matter what language they use. Why restrict everyone to using Ruby? In addition, Ruby can be kind of slow. Lowering compile time for users is important. Enter LibSass.</p>
<p>LibSass is a C/C++ port of the Sass engine. The point is to be simple, fast, and easy to integrate. Find out more about the project over at <a href="http://github.com/hcatlin/libsass">Github</a>.</p>
</section>
<p>LibSass is a C/C++ port of the Sass engine. The point is to be simple, fast, and easy to integrate. Find out more about the project over at <a href="http://github.com/hcatlin/libsass">Github</a>.</p>
</section>
<section id="sassc">
<h2>SassC</h2>
<p>LibSass is just a library. To run the code locally (i.e. to compile your stylesheets), you need an implementer. <a href="https://github.com/sass/sassc">SassC</a> (get it?) is an implementer written in C. There are a number of other implementations of LibSass - for example <a href="https://github.com/sass/node-sass">Node</a>. We encourage you to write your own port - the whole point of Libsass is that we want to bring Sass to many other languages, not just Ruby!</p>
<p>To run the compiler on your local machine, you need to build SassC. To build SassC, you must have either a local copy of the libsass source or it must be installed into your system. For development, please use the source version. You must then setup an environment variable pointing to the LibSass folder, for example:</p>
<p>LibSass is just a library. To run the code locally (i.e. to compile your stylesheets), you need an implementer. <a href="https://github.com/sass/sassc">SassC</a> (get it?) is an implementer written in C. There are a number of other implementations of LibSass - for example <a href="https://github.com/sass/node-sass">Node</a>. We encourage you to write your own port - the whole point of LibSass is that we want to bring Sass to many other languages, not just Ruby!</p>
<p>To run the compiler on your local machine, you need to build SassC. To build SassC, you must have either a local copy of the LibSass source or it must be installed into your system. For development, please use the source version. You must then setup an environment variable pointing to the LibSass folder, for example:</p>

<p><code>export SASS_LIBSASS_PATH=/Users/hcatlin/path/libsass</code></p>

Expand Down