[Freemarker] 사용자 정의 매크로에서 세미콜론은?
<#macro repeat count>
<#list 1..count as x>
<#nested x, x/2, x==count>
</#list>
</#macro>
<@repeat count=4 ; c, halfc, last>
${c}. ${halfc}<#if last> Last!</#if>
</@repeat>
이렇게 쓰는 용도는 매크로 본문부가 반복이 되는 경우 해당 본문부에 파라미터를 매크로를 정의할 때 넘겨주게 설정할 때 사용하게 된다. (음;;;)
일단 이해했으니... 정리가 되면 고쳐야겠다.
참고자료: http://freemarker.org/docs/dgui_misc_userdefdir.html