1 个版本 (0 个不稳定)
1.2.0-rc.2 | 2020年1月10日 |
---|
在 模板引擎 中排名第348
10KB
273 行
如何使用mint
调用mint
mintTMPLPATH [NAME=VAL...]
变量名不能以 !
开头,并且不能包含 }}
、=
或换行符。变量值可以包含任何内容。
模板文件
模板文件由标签和任意文本组成。标签看起来像 {{name}}
,并被变量 name
的值替换。 {{!
变成字面值 {{
。目前,模板文件和变量定义必须使用UTF-8。
示例
模板.txt:
{{!foo}} renders to {{foo}}, and {{!! renders to {{!.
It doesn't matter if bar is defined, because we don't use it.
$mint template.txt foo=cat bar=sock
输出
{{foo}} renders to cat, and {{! renders to {{.
It doesn't matter if bar is defined, because we don't use it.
名称
"Mint" 代表 "MINimal Template engine"。我不是很擅长给东西命名。