apply-codecs()
string apply-codecs(string input, string ...codecs)Example
<flow>
<template>
{
{{$input := 'my input' }}
{{$encoded := apply-codecs($input, 'deflate', 'base64-encode', 'url-encode') }}
<!-- is the same as -->
{{$deflated := apply-codecs($input, 'deflate') }}
{{$base64encoded := apply-codecs($deflated, 'base64-encode') }}
{{$encoded := apply-codecs($base64encoded, 'url-encode') }}
}
</template>
<flow>Last updated