[ic] problems with [filter] tag

Jon Jensen jon@akopia.com
Fri, 8 Dec 2000 18:26:24 -0600 (CST)


On Fri, 8 Dec 2000, Zachary Matthews wrote:

> Does anyone know why this doesn't work:
> 
>     [seti header_time][tag time]%B %d, %Y[/tag][/seti]
> 
>     [filter op="uc"][scratch header_time][/filter]
[snip]
> Does the filter tag interpolate before the scratch variable is assigned?

No. It has interpolation off by default. Just add "interpolate=1" to the
[filter] attributes. Of course, if you don't need the date in a scratch
variable at all, you can just do:

[filter op="uc" interpolate=1][tag time]%B %d, %Y[/tag][/filter]

Jon