test-nested1.txt
来自「freemaker安装软件」· 文本 代码 · 共 11 行
TXT
11 行
<#macro repeat count>
<#local y = "test">
<#foreach x in 1..count>
${y} ${count}/${x}: <#nested x, "asdf"> <#-- the second body parameter is not used below -->
</#foreach>
</#macro>
<@repeat count=3>${y?default("undefined")} ${x?default("undefined")} ${count?default("undefined")}</@repeat>
<#global x = "X">
<#global y = "Y">
<#global count = "Count">
<@repeat count=3 ; param1>${y?default("undefined")} ${x?default("undefined")} ${count?default("undefined")} ${param1}</@repeat>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?