Nikko Wolf wrote:
Ian Bicking wrote:
I'm surprised this has never come up for me before, but now I want to
render a recursive data structure and I'm at a loss how I might do
that in ZPT. Or, what the best workaround would be. E.g.:
['a', 'b', ['c', ['d', 'e']]]
Becomes:
a
b
c
Nikko Wolf schrieb:
Ian Bicking wrote:
I'm surprised this has never come up for me before, but now I want to
render a recursive data structure and I'm at a loss how I might do
that in ZPT. Or, what the best workaround would be. E.g.:
['a', 'b', ['c', ['d', 'e']]]
Becomes:
a
b
c
Ian Bicking wrote:
I'm surprised this has never come up for me before, but now I want to
render a recursive data structure and I'm at a loss how I might do
that in ZPT. Or, what the best workaround would be. E.g.:
['a', 'b', ['c', ['d', 'e']]]
Becomes:
a
b
c
d
e
I