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
I have the need to declare global functions that I want to make available in the curly braces, like this
function md5(str) {
return "as23sfgo94kl9sde445asdfloremipsumdolor"; // fake of course
}
Then {{md5(it.description)} or {{! md5(it.description)}
I get told that md5 is not defined. This is just a sample of what I am trying to do. Any guidance of how to make globals available, including functions? I know that I can do it as a filter, but I have the need for other things, like {{weekadd(it.someDate, 2)}} etc
The text was updated successfully, but these errors were encountered:
I have the need to declare global functions that I want to make available in the curly braces, like this
Then
{{md5(it.description)}
or{{! md5(it.description)}
I get told that md5 is not defined. This is just a sample of what I am trying to do. Any guidance of how to make globals available, including functions? I know that I can do it as a filter, but I have the need for other things, like
{{weekadd(it.someDate, 2)}}
etcThe text was updated successfully, but these errors were encountered: