Sebastian Stehle
Sebastian Stehle
Only the support forum: https://support.squidex.io
Thanks for your nice words, btw
Yes, I do basically the same with the AST. But I can query results across multiple data sets with a single query, therefore I use the "union" approach.
Aewsome. I have solved it in another project of mine: This is the general flow: 1. ASP.NET Core already supports the culture selection using a middleware: https://learn.microsoft.com/en-us/aspnet/core/fundamentals/localization/select-language-culture?view=aspnetcore-8.0. One of the...
I think for now it is okay. But I often override my language ;)
Okay, got it. It is basically the same problem like this: https://github.com/sebastienros/fluid/issues/307#issuecomment-818001822 I derived from FluidParser and exposed the parsers I needed: ``` public sealed class CustomFluidParser : FluidParser {...
Good to know. I tried that first, but without the ZeroOrOne, so: Primary.AndSkip(comma).And(Primary).
Can the parsers not be made public? It is "weird" that you can add custom tags from outside but not access the parsers that you need to register them.
You are very welcome. I think it only makes sense to implement this with a tree structure on the left. Just ask me, if I can support with anything.
I have never seen it somewhere else. What would be the benefit?