We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using the LibSASS filter, only certain kwargs are passed to the sass.compile command.
kwargs
sass.compile
Per http://hongminhee.org/libsass-python/sass.html#sass.compile, there are a number of other options including source_comments=True that I'd like to able to pass into the filter.
source_comments=True
This line calls compile with **args:
**args
webassets/src/webassets/filter/libsass.py
Line 78 in 8380c0d
Where args is a limited dict declared a few lines earlier:
args
Line 66 in 8380c0d
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When using the LibSASS filter, only certain
kwargs
are passed to thesass.compile
command.Per http://hongminhee.org/libsass-python/sass.html#sass.compile, there are a number of other options including
source_comments=True
that I'd like to able to pass into the filter.This line calls compile with
**args
:webassets/src/webassets/filter/libsass.py
Line 78 in 8380c0d
Where
args
is a limited dict declared a few lines earlier:webassets/src/webassets/filter/libsass.py
Line 66 in 8380c0d
The text was updated successfully, but these errors were encountered: