├── .luacheckrc ├── Changes.md ├── LICENSE ├── Makefile ├── README.md ├── dist.ini ├── lib └── resty │ ├── template.lua │ └── template │ ├── html.lua │ ├── microbenchmark.lua │ └── safe.lua └── lua-resty-template-dev-1.rockspec /.luacheckrc: -------------------------------------------------------------------------------- 1 | std = "ngx_lua" 2 | 3 | -------------------------------------------------------------------------------- /Changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bungle/lua-resty-template/HEAD/Changes.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bungle/lua-resty-template/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bungle/lua-resty-template/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bungle/lua-resty-template/HEAD/README.md -------------------------------------------------------------------------------- /dist.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bungle/lua-resty-template/HEAD/dist.ini -------------------------------------------------------------------------------- /lib/resty/template.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bungle/lua-resty-template/HEAD/lib/resty/template.lua -------------------------------------------------------------------------------- /lib/resty/template/html.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bungle/lua-resty-template/HEAD/lib/resty/template/html.lua -------------------------------------------------------------------------------- /lib/resty/template/microbenchmark.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bungle/lua-resty-template/HEAD/lib/resty/template/microbenchmark.lua -------------------------------------------------------------------------------- /lib/resty/template/safe.lua: -------------------------------------------------------------------------------- 1 | return require "resty.template".new(true) 2 | 3 | -------------------------------------------------------------------------------- /lua-resty-template-dev-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bungle/lua-resty-template/HEAD/lua-resty-template-dev-1.rockspec --------------------------------------------------------------------------------