假设我有两个宏,一个嵌套在另一个宏中。
[#macro testNestingTOP id]
[#nested]
[/#macro]
[#macro testNesting]
id: ${id}
[/#macro]
用法:
如何从testNesting宏中检索 id 参数的值?
[@testNestingTOP id='SOME VALUE']
[@testNesting /]
[/@testNestingTOP]
假设我有两个宏,一个嵌套在另一个宏中。
[#macro testNestingTOP id]
[#nested]
[/#macro]
[#macro testNesting]
id: ${id}
[/#macro]
用法:
如何从testNesting宏中检索 id 参数的值?
[@testNestingTOP id='SOME VALUE']
[@testNesting /]
[/@testNestingTOP]