Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 StringTemplate 部分中使用 $it$ 以外的变量名?
什么是局部?
无论如何,如果模板有一个参数,ST 也会设置它的值
$a:t()$
对于定义
t(v) ::= "$v$"
和
t() ::= "$it$"
$它$
$it$这是使用默认变量名称呈现的示例。
$it$
$["FOO","BAR"]:{<h1>$it$</h1>}$
$x$
在这个例子中,变量被命名为$x$
$["FOO","BAR"]:{x|<h1>$x$</h1>}$