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

Filters should not be compiled as it would be too much work. Model access should not be compiled as it's too dynamic. Statements should have a compiled version. Like in...

I'd like to get feedback on how member accessor limitations are applied on a model. It appears that in most cases the model that is passed to the template doesn't...

Should we be able to refer to "namepsaced" filters that include dots? We can register them. This works fine: ``` TemplateOptions.Default.Filters.AddFilter("html.extract_body", ExtractHtmlBody); ``` However, you get a `ParseException` if you...

I have a liquid-file 'data-converters\gender.liquid' with this content: ```yaml {%- case gender -%} {%- when "M" -%}male {%- when "F" -%}female {%- else -%}other {%- endcase -%} ``` I uses...

Hello I am using an implementation of [mikesdotnetting](https://www.mikesdotnetting.com/article/301/loading-asp-net-core-mvc-views-from-a-database-or-other-location ) to render razor views from db, my engine also looks up for liquid engine when something is not found (in error...

[DO NOT MERGE] This is just to track the feature which I find useful, to be able to used inlined liquid tags instead of requiring a new line before each...

Users are never sure which ones from the shopify documentation might not be implemented.

#247 I implemented paginate tag and added PaginateStatement to realize this function. Some unit tests have been added, but they may not be comprehensive enough. The user should create a...

https://github.com/Shopify/liquid/blob/master/performance/shopify/paginate.rb

Using `Register` is extremely convenient when registering my template models, however there are some circumstances where I don't want specific model members to be accessible. Currently my only option is...