sempare-delphi-template-engine icon indicating copy to clipboard operation
sempare-delphi-template-engine copied to clipboard

Support pipeline function calls

Open sempare opened this issue 2 years ago • 1 comments

e.g.

<% date_value | format_date('yyyy-mm-dd') %>

sempare avatar Jul 22 '22 12:07 sempare

the function being piped to would require the first parameter to be the value. arguments in the pipe call would be 2nd parameter onwards.

e.g. <% date_value | format_date('yyyy-mm-dd') %> = <% format_date(date_value , 'yyyy-mm-dd') %>

sempare avatar Sep 29 '22 08:09 sempare

additional complexity that is probably not required. just nest function calls...

darnocian avatar Jan 01 '23 18:01 darnocian