Skip to content

asual/lesscss-engine

Folders and files

NameName
Last commit message
Last commit date

Latest commit

e46be73 · May 15, 2015
May 15, 2015
Mar 22, 2014
Oct 5, 2009
Mar 22, 2014
Aug 27, 2013
Aug 10, 2014

Repository files navigation

LESS Engine

LESS Engine provides basic access to the core LESS functionality. It's a core library that can be used for a variety of JVM based LESS applications.

Usage

The following sample demonstrates how the API can be used to parse strings and compile URL resources:

// Instantiates a new LessEngine
LessEngine engine = new LessEngine();

// Compiles a CSS string
String text = engine.compile("div { width: 1 + 1 }");

// Compiles an URL resource
String url = engine.compile(getClass().getClassLoader().getResource("META-INF/test.css"));

// Creates a new file containing the compiled content
engine.compile(new File("/Users/User/Projects/styles.less"), 
               new File("/Users/User/Projects/styles.css"));

Build status

Build Status