2 つのマクロがあり、1 つが別のマクロにネストされているとします。
[#macro testNestingTOP id]
[#nested]
[/#macro]
[#macro testNesting]
id: ${id}
[/#macro]
使用法:
testNestingマクロから id パラメータの値を取得するにはどうすればよいですか?
[@testNestingTOP id='SOME VALUE']
[@testNesting /]
[/@testNestingTOP]