I made a simple Macro for get the list top10
\define list-top10(myfilter)
<$list filter="$myfilter$ +[limit[10]]" variable="current">
<<current>><br>
</$list>
\end
<<list-top10 "[!is[system]]">>
But when I transfer the Macro to Procedure, it doesnt work.
\procedure list-top10(myfilter)
<$list filter="<<myfilter>> +[limit[10]]" variable="current">
<<current>><br>
</$list>
\end
<<list-top10 "[!is[system]]">>
How to fix it correctly?