Skip to content

Instantly share code, notes, and snippets.

@buzzedword
Created March 20, 2012 15:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save buzzedword/2137445 to your computer and use it in GitHub Desktop.
Save buzzedword/2137445 to your computer and use it in GitHub Desktop.
LESS to CSS
<!DOCTYPE html>
<html>
<head>
...
<link href="style.min.less" rel="stylesheet" />
</head>
<body>
...
</body>
</html>
<!DOCTYPE html>
<html>
<head>
...
<link href="style.less" rel="stylesheet/less" />
<script src="less.js"></script>
</head>
<body>
...
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment