文件名称:musta:Go语言编写的用于Moustache模板的命令行工具
文件大小:5KB
文件格式:ZIP
更新时间:2024-06-03 03:15:52
Go
芥末酱 Go语言编写的用于Moustache模板的命令行工具。 安装 通过二进制。 通过go-get : $ go get github.com/shiwano/musta 通过: brew tap shiwano/formulas brew install musta 用法 带有模板文件。 $ cat template.mustache foo: {{foo}} $ musta -t template.mustache foo=bar foo: bar 带有模板字符串。 $ musta -T " foobar: {{foo.bar}}, qux: {{#qux}}{{value}}{{^last}},{{/last}}{{/qux}} " foo.bar=1 qux=1,2,3 foobar: 1, qux: 1,2,3 具有管道化的JSON数据。 $ cat tokyo-we
【文件预览】:
musta-master
----.travis.yml(104B)
----cli.go(2KB)
----test.mustache(37B)
----LICENSE(1KB)
----cli_test.go(1KB)
----main.go(2KB)
----.gitignore(281B)
----Makefile(39B)
----README.md(1KB)