0

What is the meaning of this expression in Sass?

$someName: <%= someName %>;
ThiefMaster
  • 310,957
  • 84
  • 592
  • 636
kfir
  • 21
  • 5

1 Answers1

0

<%= 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.

JasperZelf
  • 2,731
  • 1
  • 22
  • 34