-
when I use scriban, without Logical Short-Circuiting i always need to write:
{{ if x.array.size > 0
if x.array[0].value == 3 }}
{{# some thing goes here }}
{{ end
end }}
so with L…
-
Hello,
I have a question on how I might achieve the following.
On the .NET side, I have a model which has a property of type `JObject` (newtonsoft).
When you `ToString()` a `JObject` on the .NET …
-
I use liquid syntax with `include` statement:
{% include 'products.liquid' %}
products.liquid is loaded using the class LiquidTemplateLoader.
LiquidTemplateLoader load …
-
{{ 5 - 2 - 2 }}
currently shows 5, not 1, because the parser goes right to left when operators have the same precedence, not left to right as one might expect.
I found this line:
```
if (newPr…
-
Thanks for this Great liquid/scriban librarry.
I have liquid template, so I use the liquid mode option to render the template with member rename option.
I tried to use the [shorter version](http…
-
I'm trying to use Dictionary as model for template rendering and it works fine until keys contain dot separator. In case of dot engine trying to interpret it as part of object with error _"Scriban.…
-
Do you have any plans to produce a .net core 2.1 optimized (Span, Memory) version of Scriban?
Thank you for the great library!
-
I tried to format a datetime with milliseconds like this:
{{ date.format = '%d.%m.%Y - %H:%M:%S:%f'; testresult.time_stamp_send }}
It looks like that the 'f' placeholder is not supported :(
-
We have a desire to do some type of text macro system in Wyam. These would be small snippets of text in Markdown that would "inflate" into larger constructs.
For example:
```
[embed-tweet /gadg…
-
If you use/mix decimal properties with properties of other valuetypes (like int) within expressions, one of the value cannot be converted.
Example:
`{{ if obj.decimal_value > 0 }} `
-> throws excep…