fluid icon indicating copy to clipboard operation
fluid copied to clipboard

Fluid is an open-source .NET template engine based on the Liquid template language.

Results 97 fluid issues
Sort by recently updated
recently updated
newest added

This should include: `img_tag` and `video_tag` at least

```c# static void Main(string[] args) { Console.WriteLine("Hello World!"); var parser = new FluidParser(); TemplateOptions options = new TemplateOptions(); var fileProvider = new PhysicalFileProvider(Environment.CurrentDirectory); options.FileProvider = fileProvider; var model = new...

My apologies if this is simple to do but I have searched for the last few days now and I can't figure it out. Usually in a Razor page one...

Currently there is a risk that the same `TemplateOptions` instance is modified by different thread. Example, a context uses `UnsafeMemberAccess.Instance`, and then updates its `MemberNameStrategy`.

https://help.shopify.com/en/themes/liquid/filters/money-filters https://help.shopify.com/en/manual/payments/currency-formatting Moved from Orchard Core issue.

We already support: RGB, HEX and HSL, I think it will be plus if we add other systems such as CMYK, HSV, YIQ and others. We could focus to the...

enhancement

**Motivation** This is a PR showing the current progress on Liquid compilation support. It doesn't work but this needs to be saved to I salvaged it from my laptop before...

Firstly, thanks to all contributors for this excellent framework. We are using Fluid extensively in our open source project (Rock RMS), and it is a huge asset. We are trying...

If a property (object/variable) is not provided in the model, then its value is null / blank. Is there some option that would instead keep the 'placeholder' (variable name enclosed...

Currently, `{% render "filename" %}` will only look for a file called `filename.liquid`. However, would be great to make it use the IFileProvider to figure out the proper file, allowing...