Christian Lenz created NETBEANS-409:
---------------------------------------
Summary: Please support sass
Key: NETBEANS-409
URL: https://issues.apache.org/jira/browse/NETBEANS-409
Project: NetBeans
Issue Type: New Feature
Components: web - CSS Preprocessors (SASS, LESS, ...)
Affects Versions: Next
Reporter: Christian Lenz
ATM NetBeans only supports SCSS but not SASS. See here the differences:
{code:sass}
/* SASS */
$blue: #3bbfce
$margin: 16px
.content-navigation
border-color: $blue
color: darken($blue, 9%)
.border
padding: $margin / 2
margin: $margin / 2
border-color: $blue
{code}
{code:scss}
/* SCSS */
$blue: #3bbfce;
$margin: 16px;
.content-navigation {
border-color: $blue;
color: darken($blue, 9%);
}
.border {
padding: $margin / 2;
margin: $margin / 2;
border-color: $blue;
}
{code}
So you can see, the syntax is quite similar to JADE but NetBeans needs a
parser/lexer for sass.
Cheers
Chris
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists