You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In liqp 0.6 it was possible to use a custom tag foo like this:
{% foo a.b.c %}
But since #46 the parameter is always parsed as the string "a.b.c", and there seems to be no built-in way to parse and evaluate the expression in this string. The following does not work either (parsing fails with a NoViableAltException):
{% foo {{ a.b.c }} %}
Is there an alternative to this? The documentation generator of the next-gen Scala compiler currently relies on this: scala/scala3#3859
The text was updated successfully, but these errors were encountered:
In liqp 0.6 it was possible to use a custom tag
foo
like this:But since #46 the parameter is always parsed as the string "a.b.c", and there seems to be no built-in way to parse and evaluate the expression in this string. The following does not work either (parsing fails with a NoViableAltException):
Is there an alternative to this? The documentation generator of the next-gen Scala compiler currently relies on this: scala/scala3#3859
The text was updated successfully, but these errors were encountered: