libsass supports the [indented syntax](http://sass-lang.com/documentation/file.INDENTED_SYNTAX.html), e.g., ``` sass p a color: blue ``` This binding correctly handles files written in the indented syntax if passed as filenames with the `.sass` extension, e.g., ``` python sass.compile(filename="foobar.sass") ``` ... but has no support for the indented syntax as string input, e.g., ``` python sass.compile(string="p\n a\n color: blue\n") ``` Perhaps a keyword parameter, e.g., `syntax="sass"` / `syntax="scss"`?