1<===> input.scss 2foo { 3 &-- { 4 &baz { 5 color: red; 6 } 7 } 8} 9<===> output.css 10foo--baz { 11 color: red; 12} 13