Ciprian Dorin Craciun
Ciprian Dorin Craciun
Sometimes while working with deeply nested structures, it would be useful to create an alias to a field, like say `{% let h = &parent.child.hash %}` At the moment the...
The following simple template fails: ~~~~ {{ model.test ("test-from-model") }} ~~~~ Just by removing the whitespace between the `test` and `(...` solves the issue.
At the moment if the template deriving code is used in a module that uses `no_implicit_prelude`, the code fails to compile because it uses unqualified identifiers from `std`. The fix...
Go's [quicktemplate](https://github.com/valyala/quicktemplate) has a nice feature that opens a block in which all template statements behave like they would have been prefixed with `{%-` and `-%}`. (See the example bellow.)...
Use generic argument for `render_into` as opposed to `&mut dyn Write` (10% increase in performance)
I've done a little experiment and applied the following patch (the link bellow, and part of the patch at the end of this issue): * https://github.com/cipriancraciun/askama/commit/32ea386a2369a186e8ef83dc01e293502fc10050 Which basically changes `&mut...
At the moment the if I have a sub-template that I want to render, which can't be included at compile time through the existing means, or if I have a...
If the template structure has some methods defined, they can't be accessed from the template. For example given the following template: ~~~~ {{ test("test-from-template") }} {{ model.test("test-from-model") }} ~~~~ And...
**[Also in the attention of the following users that have forked my repository at various points: @amirunpri2018, @Dithn, @elektrotiko, @hmpandey, @jgoerzen, @rafaelsabino, @sbw78, @stillnotjoy.]** ---- Update: at the moment all...
As the title says, if the given source argument is a symlink to a folder, `mkdwarfs` fails with an error stating it wants a folder. As a workaround one could...
Just like `--no-owner` and `--no-time` are useful to build "generic" images, it would also be useful to have an option that normalizes the file-system permissions. (At the moment they are...