What is the meaning of this expression in Sass?
$someName: <%= someName %>;
What is the meaning of this expression in Sass?
$someName: <%= someName %>;
<%= someName %> is not SASS code.
It looks like it might be some other language that is used to pass a variable to SASS.
I know in ASP, <%= someName %> is used to print out a varname.