-
I've read [issue 211](https://github.com/mitsuhiko/minijinja/issues/211) discussing the potential for a new error type. I've never made my own Error type before (like in the recommendation) so I'm sta…
-
## Description
Originally macros could not leak out of the calling template, which is why the implementation could get away with indexing into the instructions of the state. Now however you can exp…
-
If you're in C++ land, then it may not be too hard for you to leverage the MiniJinja crate, where cxx.rs provides a nice and easy way to call Rust code from C++.
https://cxx.rs/
Rust MiniJinja has…
-
## Description
When I put HTML inside an indent filter, the HTML is escaped and becomes `<`, `>`, `"`, etc.
## Reproduction steps
Here is a sample code that shows the issue.
```r…
-
Make a macro that allows quick Context for easy drop in values. Something like this:
```rust
#[macro_export]
macro_rules! ctx {
({
$($key:literal : $value:expr),* $(,)?
…
-
I tried the following ways to format a float to have 2 decimal place precision, but neither worked:
```
{{ "%.2f" % price }}
```
Result: `invalid operation: tried to use % operator on unsupported …
rdbo updated
8 months ago
-
## Description / Reproduction steps
The following template behaves differently with MiniJinja 2.3.1 vs Python Jinja2 2.11.3.
```
{{ ('hello', 'world') | join(d=' ') }}
```
MiniJinja output: `…
-
# 🐛 Bug
It crashed.
## To reproduce
**Code snippet to reproduce**
```rust
module me::test3 {
use liquidswap::liquidity_pool::{get_reserves_size};
public inline fun reserves_li…
-
I keep forgetting our template generator link, and it would be useful to have it integrated inside `fluvio`.
Something similar to what netlify does:
```
% netlify functions -h
Manage netlify f…
-
Please consider the following input data:
```yaml
---
fruits:
cantaloupe:
colour: orange
banana:
colour: yellow
apple:
colour: green
```
and this template:
```jinja…