DelphiLibSass is Delphi wrapper around libsass a C/C++ implementation of a Sass compiler.
Based on the version of libsass 3.4 http://libsass.org
DelphiLibSass API is simply composed of a main TDelphiLibSass class:
TDelphiLibSass.ConvertToCss converts a SCSS string to a CSS
2 | FDelphiLibSass := TDelphiLibSass . Create( 'libsass.dll' ); |
3 | FDelphiLibSass . LoadDll; |
5 | FScssResult := FDelphiLibSass. |
6 | ConvertToCss( '$font-stack: Helvetica, sans-serif; body { font: 100% $font-stack; }' ); |
8 | writeln (FScssResult . CSS); |
TDelphiLibSass.ConvertFileToCss converts a SCSS file to a CSS
2 | FDelphiLibSass := TDelphiLibSass . Create( 'libsass.dll' ); |
3 | FDelphiLibSass . LoadDll; |
5 | FScssResult := FDelphiLibSass . ConvertFileToCss( 'test.scss' ); |
7 | writeln (FScssResult . CSS); |
Basic example on how to use the Delphi wrapper
https://github.com/novuslogic/DelphiLibSass/tree/master/Sample
References
DelphiLibSass
https://github.com/novuslogic/DelphiLibSass/