Connor Skees
Connor Skees
@dacid44 Currently I don't have any plans to expose such functionality through the main `grass` crate, as I want it to focus on the common case of just needing to...
@dacid44 I've published a new version of [`grass_compiler`](https://crates.io/crates/grass_compiler) to crates.io that exposes more internals and which should make it possible to implement custom functions in rust. Would you be able...
No worries, thanks for letting me know. This is a feature I've wanted to experiment with for a while, so it wasn't wasted work.
Closing this issue out as `grass` is the only rust library capable of compiling major libraries (bootstrap, bulma, etc.) and is currently the fastest at doing so, being [faster](https://github.com/connorskees/sass-perf) than...
Hi @GoldsteinE, I think the [`Fs`](https://docs.rs/grass/0.11.2/grass/trait.Fs.html) trait may be what you're looking for. You can find a simple example of what it sounds like you're describing in our tests, https://github.com/connorskees/grass/blob/89d72015871523e4e1451545be6c3a9fd53a745b/tests/macros.rs#L114-L130
Closing this as implemented. Please feel free to reopen this issue if you find that the `Fs` trait is not a sufficiently robust solution to the problem you're describing.
Hi @dnaka91, I've added support for the indented syntax in #67, which should be released to crates.io with a minor version bump at some point this week. I have verified...
@ISSOtm `grass` does support this function, but in a version that zola hasn't yet picked up (added in 0.12.4, zola uses 0.12.3). One solution to this until zola does its...
Closing this issue as [`grass::Options::fs`](https://docs.rs/grass/latest/grass/struct.Options.html#method.fs) should allow one to solve the problem as described. You can find a simplified example of this in our tests: https://github.com/connorskees/grass/blob/39c992a2eb9f2ef75175726b6e206b158349319e/tests/macros.rs#L117-L122 A simple importer implementation...
Closing this issue: - performance comparison and benchmarking has been implemented in https://github.com/connorskees/sass-perf (though imperfect) - https://github.com/connorskees/grass/commit/23abe152bda3db20ec3896807a445f3a75ac230f increases unit test code coverage to 90%. this is on top of the...