• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

README.mdH A D01-May-20201.7 KiB3523

allocator.mdH A D01-May-20204.8 KiB10883

api-context-example.mdH A D01-May-20202.4 KiB9568

api-context-internal.mdH A D01-May-20203.4 KiB164123

api-context.mdH A D01-May-202010.9 KiB299263

api-doc.mdH A D01-May-20208 KiB225167

api-function-example.mdH A D01-May-20202.1 KiB6852

api-function-internal.mdH A D01-May-2020164 98

api-function.mdH A D01-May-20203.4 KiB7557

api-importer-example.mdH A D01-May-20203.6 KiB11393

api-importer-internal.mdH A D01-May-2020421 2119

api-importer.mdH A D01-May-20204.3 KiB8763

api-value-example.mdH A D01-May-20201.4 KiB5641

api-value-internal.mdH A D01-May-20201.2 KiB7764

api-value.mdH A D01-May-20206 KiB155128

build-on-darwin.mdH A D01-May-2020792 2814

build-on-gentoo.mdH A D01-May-20201.3 KiB5646

build-on-windows.mdH A D01-May-20204.7 KiB140102

build-shared-library.mdH A D01-May-20201.4 KiB3631

build-with-autotools.mdH A D01-May-20202 KiB7965

build-with-makefiles.mdH A D01-May-20201.6 KiB6953

build-with-mingw.mdH A D01-May-20203.4 KiB10878

build-with-visual-studio.mdH A D01-May-20202.9 KiB9161

build.mdH A D01-May-20204.7 KiB9865

contributing.mdH A D01-May-20201.4 KiB189

custom-functions-internal.mdH A D01-May-20204.2 KiB12390

dev-ast-memory.mdH A D01-May-20207.6 KiB223171

dev-profiling.mdH A D01-May-20201.7 KiB7451

developing.mdH A D01-May-2020377 129

implementations.mdH A D01-May-20202 KiB6849

plugins.mdH A D01-May-20201.9 KiB4837

setup-environment.mdH A D01-May-20202.5 KiB7246

source-map-internals.mdH A D01-May-20202.3 KiB5236

trace.mdH A D01-May-2020892 2715

triage.mdH A D01-May-20201.7 KiB1816

unicode.mdH A D01-May-20204.9 KiB4628

README.md

1## LibSass documentation
2
3LibSass is just a library. To run the code locally (i.e. to compile your
4stylesheets), you need an implementer. SassC is an implementer written in C.
5There are a number of other implementations of LibSass - for example NodeJS.
6We encourage you to write your own port - the whole point of LibSass is that
7we want to bring Sass to many other languages!
8
9## LibSass road-map
10
11Since ruby-sass was retired in 2019 in favor of dart-sass, we slowly move
12toward full compatibility with the latest Sass specifications, although
13features like the module `@use` system may take a bit longer to add.
14
15### Implementing LibSass
16
17If you're interested in implementing LibSass in your own project see the
18[API Documentation](api-doc.md) which now includes implementing your own
19[Sass functions](api-function.md). You may wish to [look at other
20implementations](implementations.md) for your language of choice.
21
22### Contributing to LibSass
23
24|   Issue Tracker   |            Issue Triage          |     Community Guidelines    |
25|-------------------|----------------------------------|-----------------------------|
26| We're always needing help, so check out our issue tracker, help some people out, and read our article on [Contributing](contributing.md)! It's got all the details on what to do! | To help understand the process of triaging bugs, have a look at our [Issue-Triage](triage.md) document. | Oh, and don't forget we always follow [Sass Community Guidelines](https://sass-lang.com/community-guidelines). Be nice and everyone else will be nice too! |
27
28### Building LibSass
29
30Please refer to the steps on [Building LibSass](build.md)
31
32### Developing LibSass
33
34Please refer to [Developing LibSass](developing.md)
35