Elixir NIF for libsass.
mix compile
iex -S mix
Sass.compile "#navbar {width: 80%;height: 23px;ul { list-style-type: none; } li {float: left; a { font-weight: bold; } } }"
#=> {:ok, "#navbar {\n width: 80%;\n height: 23px; }\n #navbar ul {\n list-style-type: none; }\n #navbar li {\n float: left; }\n #navbar li a {\n font-weight: bold; }\n"}
Sass.compile_file "test/sample_scss.scss"
#=> {:ok, "/* sample_scss.scss */\n#navbar {\n width: 80%;\n height: 23px; }\n #navbar ul {\n list-style-type: none; }\n #navbar li {\n float: left; }\n #navbar li a {\n font-weight: bold; }\n"}
Obviously this is really early release software. The plans are:
- More Tests
- Better Documentation
- Make Hex package
- Compile a folder(sass_folder_context)
- Improve the rotor
Copyright (c) 2014 Daniel Farrell
Much of the code and explanation of how this could work was taken from two projects, Discount.ex and Sassy. Thanks guys!