I'm using CodeKit to compile .scss using libsass. In these files I want to include some Liquid templating
.some-class {
color: {{ settings.color_primary }};
}
Throws and error though. Is there a way to tell the preprocessor to let this pass through?
Thanks