Casey Rodarmor
Casey Rodarmor
> Could this crate be any helpful ? > > [MiniJinja](https://github.com/mitsuhiko/minijinja) -- Powerful but minimal dependency template engine for Rust The template language isn't so much the hard part, it's...
I think the first easiest step is to parse `f"blah {{foo}} blah"`, where the contents of an interpolation may only be a single identifier. This covers the most common case,...
The old branch is probably pretty out of date, so I'm not sure it will be much help.
This currently this isn't possible, but I could imagine supporting this somehow, like `just ( backup test )`, although this is complicated by the fact that `(` is a special...
Invoking multiple recipes is explicitly supported. It's mentioned in the readme, there's an example early on, search `just build sloc`.
Quotes won't work, because they are interpreted by the shell, so just won't see them, and trying to split strings is generally hard. I think using some character to group...
I think this could definitely be documented better.
`just backup: test` looks good, as far as syntax goes, but it only works with one argument. If a recipe has multiple arguments, then only the first could be set.
Multiple colons seems pretty weird. I think the best choice is `[`. Bash, zsh, and sh don't treat `[` and `]` as special as long long as they're alone, so...
`;` is annoying because you have to escape it, whereas `[` you don't. Also, `;` is a valid argument, whereas the opening `[` lets us know to treat `]` as...