1<===> input.scss 2.div{ 3 $foo: 1, null, 2, null, 3; 4 5 content: "#{$foo}"; 6} 7<===> output.css 8.div { 9 content: "1, 2, 3"; 10} 11