Ignore parts of sass file for parsing
问题 I'm trying to get SASS to ignore part of my .scss code while parsing. It's for a shopify theme that I'm making. My scss files are compiled into .css.liquid files so that I can put shopify's templating language liquid into the css too. I want the compiled css.liquid to look like this: .header--logo { background: url({{ 'header-logo.png' | asset_url }}) 0 0 no-repeat; } In LESS I used to do this: .header--logo { background: ~"{{ 'header-logo.png' | asset_url }}" 0 0 no-repeat; } Does SASS also