This repository was archived by the owner on Oct 24, 2025. It is now read-only.

Description
libsass supports the indented syntax, e.g.,
This binding correctly handles files written in the indented syntax if passed as filenames with the .sass extension, e.g.,
sass.compile(filename="foobar.sass")
... but has no support for the indented syntax as string input, e.g.,
sass.compile(string="p\n a\n color: blue\n")
Perhaps a keyword parameter, e.g., syntax="sass" / syntax="scss"?