Commit a66b7b0d by Andrew Nesbitt

Actually compile

parent 51d3d500
......@@ -9,7 +9,10 @@ Handle<Value> Render(const Arguments& args) {
struct sass_context* ctx = sass_new_context();
ctx->input_string = args[0]->ToString();
String::AsciiValue astr(args[0]);
char * cs = *astr;
ctx->input_string = cs;
ctx->options.output_style = SASS_STYLE_NESTED;
sass_compile(ctx);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment